This is an automated email from the ASF dual-hosted git repository.
chetanm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 235162e Fix the install task for standalone by making it depend on bootJar (#4528)
235162e is described below
commit 235162e7f2533664507c1aba3c4837e634b09292
Author: Chetan Mehrotra <chetanm@apache.org>
AuthorDate: Sat Jun 29 12:10:24 2019 +0530
Fix the install task for standalone by making it depend on bootJar (#4528)
---
core/standalone/build.gradle | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/core/standalone/build.gradle b/core/standalone/build.gradle
index 06b5526..e266088 100644
--- a/core/standalone/build.gradle
+++ b/core/standalone/build.gradle
@@ -47,6 +47,11 @@ bootJar {
finalizedBy copyBootJarToBin
}
+// Gradle boot disables the default jar task. So need to now make
+// install task depend on bootJar such that it finds the required jar file
+// https://github.com/spring-projects/spring-boot/issues/13187
+install.dependsOn(bootJar)
+
dependencies {
compile project(':core:controller')
compile project(':tools:admin')
|