-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.sbt
23 lines (22 loc) · 812 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
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
.settings(
scalaVersion := "2.11.11",
scalacOptions := Seq("-language:_", "-deprecation", "-unchecked", "-feature", "-Xlint"),
transitiveClassifiers in Global := Seq(Artifact.SourceClassifier),
sources in (Compile, doc) := Nil,
publishArtifact in (Compile, packageDoc) := false,
parallelExecution in Test := false
).settings(
resolvers += Resolver.file(
"local-ivy-repos", file(Path.userHome + "/.ivy2/local")
)(Resolver.ivyStylePatterns),
libraryDependencies ++= Seq(
jdbc,
evolutions,
"org.skinny-framework" %% "skinny-orm" % "2.3.7",
"org.scalikejdbc" %% "scalikejdbc-play-dbapi-adapter" % "2.5.3",
"com.nulab-inc" %% "play2-oauth2-provider" % "1.2.0"
)
)
routesGenerator := InjectedRoutesGenerator