Skip to content

Commit

Permalink
Plugin settings
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 5ba6483 commit 9818dab
Showing 1 changed file with 35 additions and 2 deletions.
37 changes: 35 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
inThisBuild(
List(
organization := "com.github.sbt",
homepage := Some(url("https://github.com/olafurpg/sbt-ci-release")),
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
developers := List(
Developer(
"olafurpg",
"Ólafur Páll Geirsson",
"[email protected]",
url("https://geirsson.com")
)
)
)
)

import xerial.sbt.Sonatype.sonatypeCentralHost

ThisBuild / sonatypeCredentialHost := sonatypeCentralHost

name:= "HL7-PET"

//githubOwner := "cdc.gov"
Expand Down Expand Up @@ -65,6 +87,17 @@ libraryDependencies += "com.google.code.gson" % "gson" % "2.10.1"
// case x => MergeStrategy.first
//}

crossPaths:= true
// crossPaths:= true

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

publishArtifact in (Compile, packageSrc) := true
lazy val plugin = project
.enablePlugins(SbtPlugin)
.settings(
moduleName := "sbt-ci-release",
pluginCrossBuild / sbtVersion := "1.0.4",
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1"),
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1"),
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1"),
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.2")
)

0 comments on commit 9818dab

Please sign in to comment.