-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
32 lines (26 loc) · 1.13 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
moduleName := "sbt-ci-release-early"
organization := "io.shiftleft"
sbtPlugin := true
scalaVersion := "2.12.20"
libraryDependencies ++= List(
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.1.202206130422-r", // do not upgrade to 6.x unless you're willing to give up java 8 compatibility
"com.michaelpollmeier" % "versionsort" % "1.0.11",
"org.scalatest" %% "scalatest" % "3.2.16" % Test)
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
homepage := Some(url("https://github.com/ShiftLeftSecurity/sbt-ci-release-early"))
scmInfo := Some(ScmInfo(
url("https://github.com/ShiftLeftSecurity/sbt-ci-release-early"),
"scm:[email protected]:ShiftLeftSecurity/sbt-ci-release-early.git"))
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
developers := List(
Developer(
"mpollmeier",
"Michael Pollmeier",
url("https://michaelpollmeier.com")
)
)
Global / onChangedBuildSource := ReloadOnSourceChanges
publishTo := sonatypePublishToBundle.value