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:37:18 UTC

[uima-uimafit] branch bugfix/UIMA-6223-UIMA-Groovy-plugin-causes-warning-during-build updated: [UIMA-6223] Groovy plugin causes warning during build

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


The following commit(s) were added to refs/heads/bugfix/UIMA-6223-UIMA-Groovy-plugin-causes-warning-during-build by this push:
     new 7ff0da7  [UIMA-6223] Groovy plugin causes warning during build
7ff0da7 is described below

commit 7ff0da764c4b2c2b8307fc714f3499571afae2cb
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Sat Apr 18 21:37:07 2020 +0200

    [UIMA-6223] Groovy plugin causes warning during build
    
    - Added a log message indicating what the Groovy script does
---
 uimafit-parent/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/uimafit-parent/pom.xml b/uimafit-parent/pom.xml
index ec47e4f..015f463 100644
--- a/uimafit-parent/pom.xml
+++ b/uimafit-parent/pom.xml
@@ -192,6 +192,10 @@
                 def noticeFile = new File(project.basedir.path + "/NOTICE");
                 if (noticeFile.exists()) {
                   project.properties.postNoticeText = noticeFile.text;
+                  println "Loaded NOTICE file content into property [postNoticeText]"
+                }
+                else {
+                  println "No NOTICE file was found - content not loaded into property [postNoticeText]"
                 }
               </source>
             </configuration>