-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.sbt
37 lines (32 loc) · 1.11 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
33
34
35
36
37
import Dependencies._scalaVersion
import ReleaseTransformations.*
name := """nio"""
organization := "fr.maif"
scalaVersion := _scalaVersion
lazy val root = (project in file("."))
.aggregate(
`nio-server`,
`nio-provider`
)
lazy val `nio-server` = project
lazy val `nio-provider` = project
inThisBuild(
List(
scalaVersion := _scalaVersion,
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision
)
)
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies, // : ReleaseStep
inquireVersions, // : ReleaseStep
runClean, // : ReleaseStep
//runTest, // : ReleaseStep
setReleaseVersion, // : ReleaseStep
commitReleaseVersion, // : ReleaseStep, performs the initial git checks
tagRelease, // : ReleaseStep
//publishArtifacts, // : ReleaseStep, checks whether `publishTo` is properly set up
setNextVersion, // : ReleaseStep
commitNextVersion, // : ReleaseStep
pushChanges // : ReleaseStep, also checks that an upstream branch is properly configured
)