forked from endpoints4s/endpoints4s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
46 lines (36 loc) · 1.2 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
38
39
40
41
42
43
44
45
46
import EndpointsSettings._
// Algebra interfaces
val algebras = project.in(file("algebras"))
val jsonSchema = project.in(file("json-schema"))
val openapi = project.in(file("openapi"))
// Interpreters
val xhr = project.in(file("xhr"))
val play = project.in(file("play"))
val `akka-http` = project.in(file("akka-http"))
val scalaj = project.in(file("scalaj"))
val sttp = project.in(file("sttp"))
// Test kit
val testsuite = project.in(file("testsuite"))
// Documentation and examples
val documentation = project.in(file("documentation"))
import ReleaseTransformations._
noPublishSettings
enablePlugins(CrossPerProjectPlugin)
releaseCrossBuild := false
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
releaseStepCommandAndRemaining("+test"),
setReleaseVersion,
releaseStepCommandAndRemaining("; wow 2.11.12; manual/makeSite"),
commitReleaseVersion,
tagRelease,
releaseStepCommandAndRemaining("+publishSigned"),
releaseStepCommand(Sonatype.SonatypeCommand.sonatypeReleaseAll),
releaseStepCommandAndRemaining("; wow 2.11.12; manual/ghpagesPushSite"),
setNextVersion,
commitNextVersion,
pushChanges
)
ivyLoggingLevel in ThisBuild := UpdateLogging.Quiet