-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·29 lines (15 loc) · 836 Bytes
/
build.sbt
File metadata and controls
executable file
·29 lines (15 loc) · 836 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
name:= "ATDebugger"
version := "1.0"
scalaVersion := "2.11.5"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.9" withSources() withJavadoc()
libraryDependencies += "org.scalafx" %% "scalafx" % "2.2.76-R11" withSources() withJavadoc()
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0-M5" cross CrossVersion.full)
libraryDependencies += "org.scalafx" %% "scalafxml-core-sfx2" % "0.2.2" withSources() withJavadoc()
//libraryDependencies += "org.scalafx" %% "scalafxml-core" % "0.2.1" withSources() withJavadoc()
fork in run := true
incOptions := incOptions.value.withNameHashing(false)
jfxSettings
JFX.mainClass := Some("atdebugger.ATDebugger")
JFX.devKit := JFX.jdk("/path/to/jdk")
EclipseKeys.withSource := true