-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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") | ||
) |