-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (23 loc) · 742 Bytes
/
build.sbt
File metadata and controls
32 lines (23 loc) · 742 Bytes
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
import sbtrelease.ReleaseStateTransformations._
name := "fs2json"
lazy val fs2json = (project in file(".")).aggregate(core, jawn, circe)
lazy val core = project in file("core")
lazy val jawn = (project in file("jawn")).dependsOn(core)
lazy val circe = (project in file("circe")).dependsOn(jawn)
Common.settings
publishArtifact := false
releaseCrossBuild := true // true if you cross-build the project for multiple Scala versions
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommand("publishSigned"),
setNextVersion,
commitNextVersion,
releaseStepCommand("sonatypeReleaseAll"),
pushChanges
)