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

[uima-uimafit] 01/01: UIMA-6351: japicmp post processing script fails with Java 16 (uimaFIT)

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

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

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

    UIMA-6351: japicmp post processing script fails with Java 16 (uimaFIT)
    
    - Upgrade japicmp / groovy plugin/plugin dependencies for compatibility with Java 16
    - Upgrade groovy-all plugin dependency for compatibility with Java 16
    - Upgrade to parent POM 14 (release)
---
 uimafit-parent/pom.xml | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/uimafit-parent/pom.xml b/uimafit-parent/pom.xml
index 98e953e..77c7b83 100644
--- a/uimafit-parent/pom.xml
+++ b/uimafit-parent/pom.xml
@@ -23,7 +23,7 @@
     <groupId>org.apache.uima</groupId>
     <artifactId>parent-pom</artifactId>
     <relativePath />
-    <version>14-SNAPSHOT</version>
+    <version>14</version>
   </parent>
   <artifactId>uimafit-parent</artifactId>
   <version>2.5.1-SNAPSHOT</version>
@@ -184,6 +184,19 @@
   <build>
     <plugins>
       <plugin>
+        <!-- See: https://issues.apache.org/jira/browse/UIMA-6351 -->
+        <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.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <executions>
@@ -232,7 +245,7 @@
           <dependency>
             <groupId>org.codehaus.groovy</groupId>
             <artifactId>groovy-all</artifactId>
-            <version>3.0.3</version>
+            <version>3.0.7</version>
             <type>pom</type>
           </dependency>
         </dependencies>