Skip to content

Commit

Permalink
Adding ant dependency for jdkpackager builds. Follow up to #719
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Jan 1, 2016
1 parent 852e4b4 commit 1a82c60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ script:
- if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
./sbt ++$SCALA_VERSION "scripted rpm/* debian/*";
fi
- if [[ "$TRAVIS_JDK_VERSION" = "oraclejdk8" ]]; then
./sbt ++$SCALA_VERSION "scripted jdkpackager/*";
fi
notifications:
email:
- qbranch@typesafe.com
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ scalacOptions in Compile ++= Seq("-deprecation", "-target:jvm-1.7")

libraryDependencies ++= Seq(
"org.apache.commons" % "commons-compress" % "1.4.1",
// for jdkpackager
"org.apache.ant" % "ant" % "1.9.6",
// these dependencies have to be explicitly added by the user
"com.spotify" % "docker-client" % "3.2.1" % "provided",
"org.vafer" % "jdeb" % "1.3" % "provided" artifacts (Artifact("jdeb", "jar", "jar")),
Expand Down

0 comments on commit 1a82c60

Please sign in to comment.