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:57 UTC

[lucene-solr] branch jira/LUCENE-8738 updated (eece619 -> 2ae7c8d)

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

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


    from eece619  LUCENE-8738: Downgrade Maven Surefire back to 2.17 (see LUCENE-8146), still works with Java 11 and Maven 3.5+
     new 02a255f  LUCENE-8738: Update Jacoco for Java 11 support (does not yet work due to SecurityManager)
     new 2ae7c8d  LUCENE-8738: Fix smoketester target to support Java 12 (ant target dependency was missing)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.xml               | 2 +-
 lucene/common-build.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[lucene-solr] 01/02: LUCENE-8738: Update Jacoco for Java 11 support (does not yet work due to SecurityManager)

Posted by us...@apache.org.
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 02a255ff68b51b8213cac4622b7ed863037492e2
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Apr 15 13:40:11 2019 +0200

    LUCENE-8738: Update Jacoco for Java 11 support (does not yet work due to SecurityManager)
---
 lucene/common-build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/common-build.xml b/lucene/common-build.xml
index 70efd8a..c61eee2 100644
--- a/lucene/common-build.xml
+++ b/lucene/common-build.xml
@@ -1439,7 +1439,7 @@ ${tests-output}/junit4-*.suites     - per-JVM executed suites
 
   <target name="-jacoco-install">
     <!-- download jacoco from ivy if needed -->
-    <ivy:cachepath organisation="org.jacoco" module="org.jacoco.ant" type="jar" inline="true" revision="0.7.4.201502262128"
+    <ivy:cachepath organisation="org.jacoco" module="org.jacoco.ant" type="jar" inline="true" revision="0.8.3"
                    log="download-only" pathid="jacoco.classpath" />
 
     <!-- install jacoco ant tasks -->


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

Posted by us...@apache.org.
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>