-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (24 loc) · 949 Bytes
/
build.sbt
File metadata and controls
29 lines (24 loc) · 949 Bytes
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
crossScalaVersions := Seq("2.12.3", "2.11.8")
lazy val root = (project in file("."))
.settings(
name := "solar-car-simulator",
scalaVersion := "2.12.3",
version := "0.1.0",
mainClass in assembly :=
Some("au.com.wadejensen.solarcar.main.StrategyEngineTestMain"),
//Some("au.com.wadejensen.solarcar.main.StrategyEngineMain"),
assemblyJarName in assembly := "solar-car-strategy-0.1-single-threaded-test.jar")
val nd4jVersion = "0.9.1"
classpathTypes += "maven-plugin"
// For IntelliJ thin jar
mainClass in (Compile, run) :=
Some("au.com.wadejensen.solarcar.main.StrategyEngineMain")
libraryDependencies ++=
Seq(
"com.github.melrief" %% "purecsv" % "0.1.0",
"com.typesafe" % "config" % "1.3.1",
"net.e175.klaus" % "solarpositioning" % "0.0.9",
"org.nd4j" % "nd4j-native-platform" % nd4jVersion,
//"org.nd4j" % "nd4j-cuda-8.5" % nd4jVersion,
"org.nd4j" % "nd4s_2.11" % nd4jVersion
)