-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
49 lines (34 loc) · 1.45 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
46
47
48
49
scalaVersion := "2.9.2"
//scalacOptions ++= Seq(
// "-feature",
// "-deprecation"
//)
version :="0.1.2-SNAPSHOT"
parallelExecution := true
name := "scalafxml"
organization := "com.github.nuriaion"
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 "https://github.com/Nuriaion/maven-repo/raw/master/snapshots",
"Nuriaion Releases" at "https://github.com/Nuriaion/maven-repo/raw/master/releases"
)
libraryDependencies ++= Seq(
"com.eed3si9n" %% "treehugger" % "0.2.3",
"org.scalaz" %% "scalaz-core" % "7.0.0"
)
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "1.12.3" % "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")
publishMavenStyle := true
publishTo := Some(Resolver.file("file", new File("../maven-repo/maven-repo/snapshots")))
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
licenses := Seq("BSD-style" -> url("http://www.opensource.org/licenses/bsd-license.php"))
homepage := Some(url("https://github.com/Nuriaion/ScalaFxml-sbt"))