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 2020/04/18 19:34:13 UTC

[uima-uimafit] branch bugfix/UIMA-6223-UIMA-Groovy-plugin-causes-warning-during-build created (now 6613cee)

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

rec pushed a change to branch bugfix/UIMA-6223-UIMA-Groovy-plugin-causes-warning-during-build
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git.


      at 6613cee  [UIMA-6223] Groovy plugin causes warning during build

This branch includes the following new commits:

     new 6613cee  [UIMA-6223] Groovy plugin causes warning during build

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-6223] Groovy plugin causes warning during build

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-6223-UIMA-Groovy-plugin-causes-warning-during-build
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git

commit 6613cee71015efd2989b2ed1ae141512b281e925
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Sat Apr 18 21:34:03 2020 +0200

    [UIMA-6223] Groovy plugin causes warning during build
    
    - Upgrade Groovy version using during build to a Groovy v3 which does no longer trigger the warning
---
 uimafit-parent/pom.xml | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/uimafit-parent/pom.xml b/uimafit-parent/pom.xml
index 3168545..ec47e4f 100644
--- a/uimafit-parent/pom.xml
+++ b/uimafit-parent/pom.xml
@@ -177,8 +177,8 @@
       </plugin>
       <plugin>
         <groupId>org.codehaus.gmaven</groupId>
-        <artifactId>gmaven-plugin</artifactId>
-        <version>1.5</version>
+        <artifactId>groovy-maven-plugin</artifactId>
+        <version>2.1.1</version>
         <executions>
           <execution>
             <!-- Load postNoticeText from NOTICE file -->
@@ -197,6 +197,14 @@
             </configuration>
           </execution>
         </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-all</artifactId>
+            <version>3.0.3</version>
+            <type>pom</type>
+          </dependency>
+        </dependencies>
       </plugin>
     </plugins>
     <pluginManagement>
@@ -279,7 +287,7 @@
                 <pluginExecution>
                   <pluginExecutionFilter>
                     <groupId>org.codehaus.gmaven</groupId>
-                    <artifactId>gmaven-plugin</artifactId>
+                    <artifactId>groovy-maven-plugin</artifactId>
                     <versionRange>[1.4,)</versionRange>
                     <goals>
                       <goal>execute</goal>