-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
31 lines (25 loc) · 1.21 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
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
libraryDependencies ++= {
// https://github.com/sbt/sbt/issues/3618
sys.props += "packaging.type" -> "jar"
Seq(
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.atlassian.jira" % "jira-rest-java-client-app" % "5.2.2-rtb"
notTransitive()
from "https://richardbradley.github.io/jira-rest-java-client/releases/jira-rest-java-client-app-5.2.2-rtb-jar-with-dependencies.jar",
"com.slack.api" % "slack-api-client" % "1.27.3",
"args4j" % "args4j" % "2.33",
"junit" % "junit" % "4.4" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test exclude("junit", "junit-dep")
)
}
resolvers ++= Seq(
"richardbradley-bintray" at "https://dl.bintray.com/richardbradley/jira-rest-java-client",
"atlassian-public" at "https://maven.atlassian.com/content/repositories/atlassian-public",
"atlassian-public2" at "https://packages.atlassian.com/maven-public/",
"atlassian-public3" at "https://packages.atlassian.com/public/",
"atlassian-public4" at "https://m2proxy.atlassian.com/repository/public",
"spring-plugins" at "https://repo.spring.io/plugins-release/"
)
// Pass through the app's exit code when using `sbt run`
trapExit := false