Skip to content

Commit

Permalink
Plugin settings and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Seun Soyinka authored and Seun Soyinka committed Aug 19, 2024
1 parent 13cfff1 commit b7e8ee8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sbt-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
PGP_SECRET: ${{ secrets.GPG_SECRET }}
PGP_SECRET: ${{ secrets.GPG_PRIVATE_KEY }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}

Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ libraryDependencies += "com.google.code.gson" % "gson" % "2.10.1"
// crossPaths:= true

// publishArtifact in (Compile, packageSrc) := true
publishArtifact := false
// publishArtifact := false

lazy val plugin = project
.enablePlugins(SbtPlugin)
Expand All @@ -106,9 +106,9 @@ lazy val plugin = project
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.2")
)

resolvers in Global ++= Seq(
"Sbt plugins" at "https://dl.bintray.com/sbt/sbt-plugin-releases",
"Maven Central Server" at "https://repo.maven.org/maven2",
"TypeSafe Repository Releases" at "https://repo.typesafe.com/typesafe/releases/",
"TypeSafe Repository Snapshots" at "https://repo.typesafe.com/typesafe/snapshots/"
)
// resolvers in Global ++= Seq(
// "Sbt plugins" at "https://dl.bintray.com/sbt/sbt-plugin-releases",
// "Maven Central Server" at "https://repo.maven.org/maven2",
// "TypeSafe Repository Releases" at "https://repo.typesafe.com/typesafe/releases/",
// "TypeSafe Repository Snapshots" at "https://repo.typesafe.com/typesafe/snapshots/"
// )

0 comments on commit b7e8ee8

Please sign in to comment.