Repository: aurora-packaging Updated Branches: refs/heads/master 94aee46ee -> b8edaf2c6
Use Gradle installDist task rather than installApp. The latter was deprecated and finally removed in Gradle 3.0: "The installApp task is no longer created by the application plugin (use installDist instead)." https://docs.gradle.org/3.0/release-notes Reviewed at https://reviews.apache.org/r/52777/ Project: http://git-wip-us.apache.org/repos/asf/aurora-packaging/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora-packaging/commit/b8edaf2c Tree: http://git-wip-us.apache.org/repos/asf/aurora-packaging/tree/b8edaf2c Diff: http://git-wip-us.apache.org/repos/asf/aurora-packaging/diff/b8edaf2c Branch: refs/heads/master Commit: b8edaf2c60c88c1a076303ed854797cd5334a959 Parents: 94aee46 Author: Stephan Erb <[email protected]> Authored: Wed Oct 12 16:49:26 2016 +0200 Committer: Stephan Erb <[email protected]> Committed: Wed Oct 12 16:49:26 2016 +0200 ---------------------------------------------------------------------- specs/debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora-packaging/blob/b8edaf2c/specs/debian/rules ---------------------------------------------------------------------- diff --git a/specs/debian/rules b/specs/debian/rules index fc74d1c..4effc3e 100755 --- a/specs/debian/rules +++ b/specs/debian/rules @@ -27,7 +27,7 @@ export PANTS_CONFIG_OVERRIDE override_dh_auto_build: __gradle_build __pants_build __gradle_build: - $(gradle) installApp + $(gradle) installDist __pants_build: mkdir -p third_party
