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

[uima-uimafit] branch bugfix/UIMA-6351-japicmp-post-processing-script-fails-with-Java-16 created (now 842c6b9)

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

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


      at 842c6b9  UIMA-6351: japicmp post processing script fails with Java 16 (uimaFIT)

This branch includes the following new commits:

     new 842c6b9  UIMA-6351: japicmp post processing script fails with Java 16 (uimaFIT)

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-uimafit] 01/01: UIMA-6351: japicmp post processing script fails with Java 16 (uimaFIT)

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-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>