forked from openMF/fineract-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
22 lines (22 loc) · 989 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
lazy val root = (project in file(".")).
settings(
organization := "org.mifos.fineract",
name := "client",
version := "1.0.0",
scalaVersion := "2.13.3",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
"com.squareup.retrofit2" % "converter-scalars" % "2.9.0" % "compile",
"com.squareup.retrofit2" % "retrofit" % "2.9.0" % "compile",
"com.squareup.retrofit2" % "converter-gson" % "2.9.0" % "compile",
"io.swagger" % "swagger-annotations" % "1.6.2" % "compile",
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"joda-time" % "joda-time" % "2.10.6" % "compile",
"io.gsonfire" % "gson-fire" % "1.8.4" % "compile",
"junit" % "junit" % "4.13" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)