forked from ogrodnek/crucible-client-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
53 lines (40 loc) · 1.24 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
organization := "com.bizo"
organizationName := "com.bizo"
name := "crucible-client-scala"
version := "1.1.1"
scalaVersion := "2.10.3"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:_")
libraryDependencies ++= Seq(
"com.sun.jersey" % "jersey-bundle" % "1.9.1",
"javax.ws.rs" % "jsr311-api" % "1.1.1",
"org.json4s" %% "json4s-native" % "3.2.9",
"junit" % "junit" % "4.10" % "test",
"com.novocode" % "junit-interface" % "0.10-M4" % "test"
)
EclipseKeys.withSource := true
site.settings
site.includeScaladoc()
ghpages.settings
git.remoteRepo := "git@github.com:ogrodnek/crucible-client-scala.git"
sonatypeSettings
pomExtra := {
<url>https://github.com/ogrodnek/crucible-client-scala</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/ogrodnek/crucible-client-scala</url>
<connection>https://github.com/ogrodnek/crucible-client-scala.git</connection>
</scm>
<developers>
<developer>
<id>larry</id>
<name>Larry Ogrodnek</name>
<email>larry@bizo.com</email>
</developer>
</developers>
}