From commits-return-7664-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Sat Jun 29 06:40:32 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 0356818066B for ; Sat, 29 Jun 2019 08:40:31 +0200 (CEST) Received: (qmail 57031 invoked by uid 500); 29 Jun 2019 06:40:31 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 57022 invoked by uid 99); 29 Jun 2019 06:40:31 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Jun 2019 06:40:31 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3C69987AD7; Sat, 29 Jun 2019 06:40:31 +0000 (UTC) Date: Sat, 29 Jun 2019 06:40:30 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk] branch master updated: Fix the install task for standalone by making it depend on bootJar (#4528) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156179043049.1346.11525041197552555926@gitbox.apache.org> From: chetanm@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 2acedf5d281ef61cbe128b20799b85c75bf0a26b X-Git-Newrev: 235162e7f2533664507c1aba3c4837e634b09292 X-Git-Rev: 235162e7f2533664507c1aba3c4837e634b09292 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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')