-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.sbt
55 lines (41 loc) · 1.22 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
import SonatypeKeys._
sonatypeSettings
organization := "com.bizo"
organizationName := "com.bizo"
name := "spark-plug"
version := "1.2.5"
scalaVersion := "2.10.3"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:_")
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk" % "1.10.16",
"com.googlecode.json-simple" % "json-simple" % "1.1.1",
"commons-lang" % "commons-lang" % "2.6",
"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/spark-plug.git"
pomExtra := {
<url>https://github.com/ogrodnek/spark-plug</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/spark-plug</url>
<connection>https://github.com/ogrodnek/spark-plug.git</connection>
</scm>
<developers>
<developer>
<id>larry</id>
<name>Larry Ogrodnek</name>
<email>larry@bizo.com</email>
</developer>
</developers>
}