-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
39 lines (33 loc) · 1.93 KB
/
Copy pathbuild.sbt
File metadata and controls
39 lines (33 loc) · 1.93 KB
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
name := "k8sop"
organization := "jp.co.septeni_original"
version := "0.1-SNAPSHOT"
resolvers ++= Seq(
Resolver.bintrayRepo("digdag", "maven"),
"jitpack" at "https://jitpack.io"
)
def digdagVersion = "0.9.27"
scalacOptions ++= Seq(
"-Ywarn-unused-import"
)
libraryDependencies ++= Seq(
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"org.slf4j" % "slf4j-api" % "1.7.25",
"commons-io" % "commons-io" % "2.5",
"ch.qos.logback" % "logback-classic" % "1.2.3" % Provided,
"io.kubernetes" % "client-java" % "4.0.0",
// provide by digdag-server or client.
"io.digdag" % "digdag-spi" % digdagVersion % Provided,
"io.digdag" % "digdag-plugin-utils" % digdagVersion % Provided,
// avoid this issue (https://stackoverflow.com/questions/23701209/sbt-0-13-2-m3-to-0-13-5-rc3-issue)
// copied from https://github.com/resteasy/Resteasy/blob/3.0/resteasy-dependencies-bom/pom.xml
"commons-io" % "commons-io" % "2.5" % Provided,
"org.jboss.spec.javax.ws.rs" % "jboss-jaxrs-api_2.0_spec" % "1.0.0.Final" % Provided,
"junit" % "junit" % "4.12" % Provided,
"javax.activation" % "activation" % "1.1.1" % Provided,
"org.jboss.spec.javax.annotation" % "jboss-annotations-api_1.2_spec" % "1.0.0.Final" % Provided,
"org.jboss.logging" % "jboss-logging-annotations" % "2.1.0.Final" % Provided,
"org.jboss.logging" % "jboss-logging-processor" % "2.1.0.Final" % Provided,
"org.jboss.spec.javax.servlet" % "jboss-servlet-api_3.1_spec" % "1.0.0.Final" % Provided,
"net.jcip" % "jcip-annotations" % "1.0" % Provided,
"org.apache.httpcomponents" % "httpclient" % "4.5.2" % Provided
)