forked from kogecoo/dl4j-examples-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (24 loc) · 1.07 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
lazy val root = project.in(file("."))
.aggregate(datavec_examples, dl4j_cuda_specific_examples, dl4j_examples)
.settings(name := "deeplearningj4j-examples")
.settings(commonSettings:_*)
lazy val dl4j_cuda_specific_examples = project.in(file("dl4j-cuda-specific-examples"))
.settings(name := "dl4j-cuda-specific-examples")
.settings(commonSettings:_*)
lazy val dl4j_examples = project.in(file("dl4j-examples"))
.settings(name := "dl4j-examples")
.settings(commonSettings:_*)
lazy val datavec_examples = project.in(file("datavec-examples"))
.settings(name := "datavec-examples")
.settings(commonSettings:_*)
lazy val commonSettings = Seq(
version := "1.0",
scalaVersion := "2.10.6",
classpathTypes += "maven-plugin",
resolvers ++= commonResolvers
)
lazy val commonResolvers = Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype release Repository" at "http://oss.sonatype.org/service/local/staging/deploy/maven2/",
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository/"
)