-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (26 loc) · 847 Bytes
/
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
33
import ReleaseTransformations._
organization := "pl.newicom.ide.intellij"
name := "intellij-sbt-tasks"
sbtPlugin := true
homepage := Some(new URL("https://github.com/pawelkaczor/intellij-sbt-tasks"))
licenses := ("Apache2", new URL("https://raw.githubusercontent.com/pawelkaczor/intellij-sbt-tasks/master/LICENSE")) :: Nil
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
sonatypeProfileName := "pl.newicom"
versionScheme := Some("early-semver")
scalacOptions ++= Seq("-deprecation", "-feature")
Publish.settings
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommand("publishSigned"),
releaseStepCommand("sonatypeBundleRelease"),
setNextVersion,
commitNextVersion,
pushChanges
)