You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2021/04/16 10:36:18 UTC

[uima-uimaj] branch bugfix/UIMA-6349-japicmp-post-processing-script-fails-with-Java-16-v2 created (now c935308)

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

rec pushed a change to branch bugfix/UIMA-6349-japicmp-post-processing-script-fails-with-Java-16-v2
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git.


      at c935308  UIMA-6349: japicmp post processing script fails with Java 16

This branch includes the following new commits:

     new c935308  UIMA-6349: japicmp post processing script fails with Java 16

The 1 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.


[uima-uimaj] 01/01: UIMA-6349: japicmp post processing script fails with Java 16

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch bugfix/UIMA-6349-japicmp-post-processing-script-fails-with-Java-16-v2
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git

commit c935308c5887afc2df782170783f666794a6453b
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Fri Apr 16 12:35:35 2021 +0200

    UIMA-6349: japicmp post processing script fails with Java 16
    
    - Upgrade japicmp / groovy to be compatible with Java 16
    - Also bump p2-layout-resolver to be compatible with Java 16
    
    (cherry picked from commit a60114e837f445db8bacc5049be9f46259b53eb6)
---
 uimaj-parent/pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/uimaj-parent/pom.xml b/uimaj-parent/pom.xml
index c988603..6500ce4 100644
--- a/uimaj-parent/pom.xml
+++ b/uimaj-parent/pom.xml
@@ -206,9 +206,23 @@
   <build>
     <plugins>
       <plugin>
+        <!-- See: https://issues.apache.org/jira/browse/UIMA-6349 -->
+        <groupId>com.github.siom79.japicmp</groupId>
+        <artifactId>japicmp-maven-plugin</artifactId>
+        <version>0.15.3</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-jsr223</artifactId>
+            <version>2.5.14</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+      
+      <plugin>
         <groupId>org.openntf.maven</groupId>
         <artifactId>p2-layout-resolver</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0</version>
         <extensions>true</extensions>
       </plugin>