forked from swaldman/c3p0-play
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
68 lines (51 loc) · 1.74 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
57
58
59
60
61
val projectName = "c3p0-play"
version := "0.1.2"
organization := "com.mchange"
name := projectName
sbtVersion in Global := "0.13.0"
scalaVersion in Global := "2.10.3"
scalacOptions := Seq("-feature", "-deprecation")
libraryDependencies ++= Seq(
"com.mchange" % "c3p0" % "0.9.5-pre8",
"com.mchange" %% "mlog-scala" % "0.3.4",
"com.typesafe.play" %% "play-jdbc" % "2.2.0" % "compile,optional",
"org.specs2" %% "specs2" % "2.3.4+" % "test"
)
resolvers ++= Seq(
"typesafe" at "http://repo.typesafe.com/typesafe/releases",
"snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
publishTo <<= version {
(v: String) => {
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" )
else
Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2" )
}
}
pomExtra := (
<url>https://github.com/swaldman/{projectName}</url>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>Eclipse Public License, Version 1.0</name>
<url>http://www.eclipse.org/org/documents/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:swaldman/{projectName}.git</url>
<connection>scm:git:git@github.com:swaldman/{projectName}.git</connection>
</scm>
<developers>
<developer>
<id>swaldman</id>
<name>Steve Waldman</name>
<email>swaldman@mchange.com</email>
</developer>
</developers>
)