-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
37 lines (27 loc) · 1.34 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
name := """DeepLearning4j-Studio"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean).settings(
watchSources ++= (baseDirectory.value / "public/ui" ** "*").get
)
scalaVersion := "2.12.2"
libraryDependencies += guice
// Test Database
libraryDependencies += javaJdbc
// libraryDependencies += "com.h2database" % "h2" % "1.4.194"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.21"
// ---------- DL4J Libs
libraryDependencies += "org.deeplearning4j" % "deeplearning4j-core" % "1.0.0-beta4"
libraryDependencies += "org.deeplearning4j" % "deeplearning4j-cuda-10.0" % "1.0.0-beta4"
// libraryDependencies += "org.deeplearning4j" % "dl4j-spark_2.11" % "1.0.0-beta3"
// ---------- ND4J Libs
libraryDependencies += "org.nd4j" % "nd4j-native-platform" % "1.0.0-beta4"
libraryDependencies += "org.projectlombok" % "lombok" % "1.18.10"
// TODO delete these later
libraryDependencies += "jfree" % "jfreechart" % "1.0.13"
libraryDependencies += "org.jfree" % "jcommon" % "1.0.23"
// Testing libraries for dealing with CompletionStage...
libraryDependencies += "org.assertj" % "assertj-core" % "3.6.2" % Test
libraryDependencies += "org.awaitility" % "awaitility" % "2.0.0" % Test
libraryDependencies += evolutions
// Make verbose tests
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))