-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (31 loc) · 960 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
34
35
import ReleaseTransformations._
organization in ThisBuild := "co.flagly"
scalaVersion in ThisBuild := "2.13.1"
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion,
pushChanges
)
resolvers += Resolver.jcenterRepo
lazy val `flagly-api` = (project in file("."))
.enablePlugins(PlayScala)
.settings(
libraryDependencies ++= Seq(
evolutions,
jdbc,
guice,
"co.flagly" % "flagly-core" % "0.2.0",
"dev.akif" %% "e-play-json" % "0.2.2",
"org.playframework.anorm" %% "anorm" % "2.6.5",
"org.postgresql" % "postgresql" % "42.2.8",
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "4.0.3" % Test
)
)