-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (17 loc) · 850 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
name := "gocd-hipchat-plugin"
version := "1.0"
scalaVersion := "2.10.4"
val goVersion = "14.1.0"
packageOptions in (Compile, packageBin) +=
Package.ManifestAttributes( "Go-Version" -> goVersion )
artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
artifact.name + "." + artifact.extension
}
assemblyJarName in assembly := name.value + ".jar"
libraryDependencies += "com.thoughtworks.go" % "go-plugin-api" % "current" % "provided" from "http://www.thoughtworks.com/products/docs/go/current/help/resources/go-plugin-api-current.jar"
scalariformSettings
libraryDependencies ++= Seq(
"org.scalaj" %% "scalaj-http" % "1.0.1",
"org.json4s" %% "json4s-native" % "3.2.11" exclude("org.scala-lang", "scalap"))
scalacOptions += "-target:jvm-1.6"
libraryDependencies += "org.specs2" %% "specs2" % "2.4.2" % "test"