-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
27 lines (17 loc) · 849 Bytes
/
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
organization := "nxt"
name := "nxtscala"
version := "0.3.2"
scalaVersion := "2.11.7"
scalacOptions in Test ++= Seq("-Yrangepos")
resolvers += "Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
resolvers += "Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases/"
resolvers += "Typesafe maven releases" at "http://repo.typesafe.com/typesafe/maven-releases/"
libraryDependencies ++= Seq(
"org.scala-lang.plugins" %% "scala-continuations-library" % "1.0.2",
"com.github.nscala-time" %% "nscala-time" % "1.6.0",
"com.jsuereth" % "scala-arm_2.10" % "1.3",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scala-lang.plugins" %% "scala-continuations-library" % "1.0.2"
)
publishMavenStyle := true
publishTo := Some(Resolver.file("nxtscala", new File( "../repo" )))