-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.sbt
85 lines (77 loc) · 2.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
val ant = "org.apache.ant" % "ant" % "1.9.4"
val apacheCommons = "org.apache.commons" % "commons-lang3" % "3.1"
val commonsIo = "commons-io" % "commons-io" % "1.3.2"
val awsS3 = "com.amazonaws" % "aws-java-sdk-s3" % "1.11.127"
val nscalaTime = "com.github.nscala-time" %% "nscala-time" % "2.4.0"
val gson = "com.google.code.gson" % "gson" % "2.2.3"
val goPluginLibrary = "cd.go.plugin" % "go-plugin-api" % "15.1.0" % Provided
val hamcrest = "org.hamcrest" % "hamcrest-all" % "1.3" % Test
val junit = "junit" % "junit" % "4.12" % Test
val junitInterface = "com.novocode" % "junit-interface" % "0.11" % Test
val mockito = "org.mockito" % "mockito-all" % "1.10.19" % Test
val scalaTest = "org.scalatest" %% "scalatest" % "2.2.0" % Test
val appVersion = sys.env.get("TRAVIS_TAG") orElse sys.env.get("BUILD_LABEL") getOrElse "1.0.0-SNAPSHOT"
lazy val root = Project(
id = "gocd-s3-artifacts",
base = file(".")
) aggregate(utils, publish, material, fetch)
lazy val commonSettings = Seq(
organization := "com.indix",
version := appVersion,
scalaVersion := "2.10.4",
unmanagedBase := file(".") / "lib",
libraryDependencies ++= Seq(
apacheCommons, commonsIo, awsS3, goPluginLibrary, gson
),
variables in EditSource += ("version", appVersion),
targetDirectory in EditSource <<= baseDirectory(_ / "target" / "transformed"),
sources in EditSource <++= baseDirectory.map(d => (d / "template" / "plugin.xml").get),
unmanagedResourceDirectories in Compile += { baseDirectory.value / "target" / "transformed" }
)
lazy val utils = (project in file("utils")).
settings(commonSettings: _*).
settings(
name := "utils",
crossPaths := false,
autoScalaLibrary := false,
libraryDependencies ++= Seq(
junit, junitInterface, mockito
),
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
)
lazy val publish = (project in file("publish")).
dependsOn(utils % "test->test;compile->compile").
settings(commonSettings: _*).
settings(
name := "s3publish",
crossPaths := false,
autoScalaLibrary := false,
libraryDependencies ++= Seq(
ant, junit, junitInterface, mockito
),
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
)
lazy val material = (project in file("material")).
dependsOn(utils).
settings(commonSettings: _*).
settings(
name := "s3material",
crossPaths := false,
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false),
libraryDependencies ++= Seq(
scalaTest, mockito
),
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
)
lazy val fetch = (project in file("fetch")).
dependsOn(utils % "test->test;compile->compile").
settings(commonSettings: _*).
settings(
name := "s3fetch",
crossPaths := false,
autoScalaLibrary := false,
libraryDependencies ++= Seq(
junit, mockito
),
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
)