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:35:20 UTC

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

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
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git

commit a60114e837f445db8bacc5049be9f46259b53eb6
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
---
 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 d2c02d6..55c8188 100644
--- a/uimaj-parent/pom.xml
+++ b/uimaj-parent/pom.xml
@@ -232,9 +232,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>