-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
45 lines (32 loc) · 1.28 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
scalaVersion := "2.10.1"
scalacOptions ++= Seq(
"-feature",
"-deprecation"
)
version :="0.1.2-SNAPSHOT"
parallelExecution := true
name := "scalafxml-example"
organization := "com.github.nuriaion"
fork := true
resolvers ++= Seq(
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases",
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"Nuriaion Snapshots" at "http://github.com/Nuriaion/maven-repo/raw/master/snapshots",
"Nuriaion Releases" at "http://github.com/Nuriaion/maven-repo/raw/master/releases"
)
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.0.0",
"org.scalafx" %% "scalafx" % "1.0.0-M3"
)
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "1.14" % "test",
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test",
"junit" % "junit" % "4.11" % "test",
"org.pegdown" % "pegdown" % "1.2.0" % "test"
)
testOptions in Test += Tests.Argument("junitxml", "html", "console", "markup")
publishArtifact in Compile := true
scalafxmlSettings
unmanagedJars in Compile += Attributed.blank(file(System.getenv("JAVA_HOME") + "/jre/lib/jfxrt.jar"))