|
| 1 | +ThisBuild / sonatypeCredentialHost := sys.env.getOrElse("SONATYPE_HOST", "s01.oss.sonatype.org") |
| 2 | +ThisBuild / credentials += sys.env.get("SONATYPE_USERNAME").map(username => Credentials(sys.env("SONATYPE_REALM"), sys.env("SONATYPE_HOST"), username, sys.env("SONATYPE_PASSWORD"))).getOrElse(Credentials(Path.userHome / ".sbt" / "sonatype_credentials")) |
| 3 | +ThisBuild / releasePublishArtifactsAction := PgpKeys.publishSigned.value |
| 4 | +ThisBuild / fork := true |
| 5 | +ThisBuild / versionScheme := Some("semver-spec") |
| 6 | +ThisBuild / organization := "bio.ferlab" |
| 7 | +ThisBuild / organizationName := "ferlab" |
| 8 | +ThisBuild / organizationHomepage := Some(url("https://github.com/Ferlab-Ste-Justine")) |
| 9 | + |
| 10 | +ThisBuild / scmInfo := Some( |
| 11 | + ScmInfo( |
| 12 | + url("https://github.com/Ferlab-Ste-Justine/obo-parser"), |
| 13 | + "scm:[email protected]:Ferlab-Ste-Justine/obo-parser.git" |
| 14 | + ) |
| 15 | +) |
| 16 | + |
| 17 | +ThisBuild / developers := List( |
| 18 | + Developer( |
| 19 | + id = "adipaul1981", |
| 20 | + name = "Adrian Paul", |
| 21 | + |
| 22 | + url = url("https://github.com/adipaul1981") |
| 23 | + ), |
| 24 | + Developer( |
| 25 | + id = "jecos", |
| 26 | + name = "Jeremy Costanza", |
| 27 | + |
| 28 | + url = url("https://github.com/jecos") |
| 29 | + ) |
| 30 | +) |
| 31 | +ThisBuild / description := "Library built on top of Apache Spark to speed-up data lakes development.." |
| 32 | +ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) |
| 33 | +ThisBuild / homepage := Some(url("https://github.com/Ferlab-Ste-Justine/obo-parser")) |
| 34 | + |
| 35 | +import sbt.url |
| 36 | +import xerial.sbt.Sonatype._ |
| 37 | + |
| 38 | +ThisBuild / sonatypeProjectHosting := Some( GitHubHosting( "Ferlab Ste-Justine", "obo-parser", "[email protected]")) |
| 39 | +// Remove all additional repository other than Maven Central from POM |
| 40 | +ThisBuild / pomIncludeRepository := { _ => false } |
| 41 | +ThisBuild / publishTo := { |
| 42 | + val nexus = "https://s01.oss.sonatype.org/" |
| 43 | + if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") |
| 44 | + else Some("releases" at nexus + "service/local/staging/deploy/maven2") |
| 45 | +} |
| 46 | +ThisBuild / publishMavenStyle := true |
0 commit comments