forked from jpersson/prequel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
56 lines (44 loc) · 1.36 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
50
51
52
53
54
55
56
name := "prequel"
version := "0.3.9"
organization := "net.noerd"
scalaVersion := "2.10.0"
// Runtime Dependencies
libraryDependencies ++= Seq(
"commons-pool" % "commons-pool" % "1.5.5",
"commons-dbcp" % "commons-dbcp" % "1.4",
"commons-lang" % "commons-lang" % "2.6",
"joda-time" % "joda-time" % "2.1",
"org.joda" % "joda-convert" % "1.2"
)
// Test Dependencies
libraryDependencies ++= Seq(
"org.hsqldb" % "hsqldb" % "2.2.4" % "test",
"org.scalatest" %% "scalatest" % "1.9.1" % "test"
)
parallelExecution in Test := false
// Release publishing stuff
publishTo := Some( "Sonatype Staging Nexus" at "https://oss.sonatype.org/service/local/staging/deploy/maven2" )
pomIncludeRepository := { _ => false }
publishMavenStyle := true
credentials += Credentials( Path.userHome / ".ivy2" / ".credentials" )
pomExtra := (
<url>http://github.com/jpersson/prequel</url>
<licenses>
<license>
<name>wtfpl</name>
<url>http://www.wtfpl.net/txt/copying/</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/jpersson/prequel.git</url>
<connection>scm:git:https://github.com/jpersson/prequel.git</connection>
</scm>
<developers>
<developer>
<id>jpersson</id>
<name>Johan Persson</name>
<url>http://github.com/jpersson</url>
</developer>
</developers>
)