blob: c5f7bbd251ee4460fcaf640ce775dea0e5f217a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name := "tlcockpit"
version := "0.1"
scalaVersion := "2.12.3"
libraryDependencies += "org.scalafx" % "scalafx_2.12" % "8.0.102-R11"
// unmanagedJars in Compile += Attributed.blank(file(System.getenv("JAVA_HOME") + "/jre/lib/ext/jfxrt.jar"))
// unmanagedJars in Compile += Attributed.blank(file("/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jfxrt.jar"))
mainClass in assembly := Some("TLCockpit.ApplicationMain")
// for scalafx
fork := true
|