-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (22 loc) · 975 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
28
organization := "plalloni"
name := "sutil"
version := "0.1-SNAPSHOT"
scalaVersion := "2.9.1"
libraryDependencies ++= Seq (
"org.clapper" %% "grizzled-slf4j" % "0.6.6" % "provided",
"org.scalaz" %% "scalaz-core" % "6.0.3" % "provided",
"org.scalaquery" % "scalaquery_2.9.0-1" % "0.9.5" % "provided",
"org.scala-tools.time" %% "time" % "0.5" % "provided",
"joda-time" % "joda-time" % "2.0" % "provided",
"org.joda" % "joda-convert" % "1.1" % "provided",
"org.scalatest" %% "scalatest" % "1.6.1" % "test",
"ch.qos.logback" % "logback-classic" % "1.0.0" % "test",
"junit" % "junit" % "4.8" % "test",
"org.scala-tools.testing" %% "scalacheck" % "1.9" % "test")
publishMavenStyle := true
publishTo <<= version { ver ⇒ Some(
Resolver
.file("Local Repository", file(Path.userHome
+ "/projects/artifacts/maven-"
+ (if (ver endsWith "-SNAPSHOT") "snapshots" else "releases")))
.mavenStyle)}