-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.sbt
51 lines (41 loc) · 1.36 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
47
48
49
50
51
import ReleaseTransformations._
organization := "com.dripower"
name := "play-circe"
scalaVersion := "3.3.4"
crossScalaVersions := Seq("2.13.14", scalaVersion.value)
val playV = "3.0.5"
val circeV = "0.14.10"
val crossDeps = Seq(
"io.circe" %% "circe-core" % circeV,
"io.circe" %% "circe-parser" % circeV,
"io.circe" %% "circe-generic" % circeV % Test,
"org.scalameta" %% "munit" % "1.0.1" % Test,
"org.hamcrest" % "hamcrest" % "2.2" % Test,
"org.playframework" %% "play" % playV % Provided,
"org.playframework" %% "play-guice" % playV % Provided
)
libraryDependencies ++= crossDeps
scalacOptions := {
Seq(
"-release:11",
"-deprecation",
"-encoding",
"UTF-8",
"-feature"
)
}
// POM settings for Sonatype
homepage := Some(url("https://github.com/jilen/play-circe"))
scmInfo := Some(ScmInfo(url("https://github.com/jilen/play-circe"), "[email protected]:jilen/play-circe.git"))
developers += Developer("jilen", "jilen", "[email protected]", url("https://github.com/jilen"))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion,
pushChanges
)