-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (16 loc) · 804 Bytes
/
build.sbt
File metadata and controls
21 lines (16 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
libraryDependencies += "com.lihaoyi" %% "fastparse" % "1.0.0"
libraryDependencies += "org.scalafx" %% "scalafx" % "8.0.144-R12"
libraryDependencies += "org.scalafx" %% "scalafxml-core-sfx8" % "0.4"
libraryDependencies += "com.jfoenix" % "jfoenix" % "9.0.1"
// https://mvnrepository.com/artifact/net.sf.jopt-simple/jopt-simple
libraryDependencies += "net.sf.jopt-simple" % "jopt-simple" % "5.0.4"
exportJars := true
lazy val JOakClassFiles = ProjectRef(file("../JOakClassFiles"), "JOakClassFiles")
lazy val JOakJVM = (project in file("."))
.settings(
name := "JOakJVM",
scalaVersion := "2.12.4",
test in assembly := {}
).dependsOn(JOakClassFiles)