You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2019/04/15 11:51:59 UTC

[lucene-solr] 02/02: LUCENE-8738: Fix smoketester target to support Java 12 (ant target dependency was missing)

This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch jira/LUCENE-8738
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 2ae7c8d2b8f874abb0b54be611d2be1f5c06ef5a
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Apr 15 13:51:39 2019 +0200

    LUCENE-8738: Fix smoketester target to support Java 12 (ant target dependency was missing)
---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index d4efe46..c45f7ce 100755
--- a/build.xml
+++ b/build.xml
@@ -433,7 +433,7 @@ File | Project Structure | Platform Settings | SDKs):
   </target>
   
   <target name="nightly-smoke" description="Builds an unsigned release and smoke tests it  (pass '-DsmokeTestRelease.java12=/path/to/jdk-12' to additionally test with Java 12 or later)"
-    depends="clean,resolve-groovy,resolve-markdown,install-maven-tasks">
+    depends="clean,resolve-groovy,resolve-markdown,install-maven-tasks,-nightly-smoke-java12params">
     <fail message="To run nightly smoke, the JDK must be exactly Java 11, was: ${java.specification.version}">
       <condition>
         <not><equals arg1="${java.specification.version}" arg2="11"/></not>