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/03/01 15:35:10 UTC

[uima-ruta] branch bugfix/UIMA-6323-SeedLexer-not-generated-when-building-in-Eclipse created (now 7509a16)

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

rec pushed a change to branch bugfix/UIMA-6323-SeedLexer-not-generated-when-building-in-Eclipse
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git.


      at 7509a16  [UIMA-6323] SeedLexer not generated when building in Eclipse

This branch includes the following new commits:

     new 7509a16  [UIMA-6323] SeedLexer not generated when building in Eclipse

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-ruta] 01/01: [UIMA-6323] SeedLexer not generated when building in Eclipse

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-6323-SeedLexer-not-generated-when-building-in-Eclipse
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 7509a16c574ad1bf9647d60aac0b16b424cad7d6
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Mon Mar 1 16:34:56 2021 +0100

    [UIMA-6323] SeedLexer not generated when building in Eclipse
    
    - Enabled jflex plugin in Eclipse builds
---
 .gitignore        | 1 +
 ruta-core/pom.xml | 6 ++----
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1da8d91..f5f72ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 target/
 api-change-report/
 issuesFixed
+.factorypath
diff --git a/ruta-core/pom.xml b/ruta-core/pom.xml
index 5356837..b6f263e 100644
--- a/ruta-core/pom.xml
+++ b/ruta-core/pom.xml
@@ -219,16 +219,14 @@
                 <pluginExecution>
                   <pluginExecutionFilter>
                     <groupId>de.jflex</groupId>
-                    <artifactId>
-                      jflex-maven-plugin
-                    </artifactId>
+                    <artifactId>jflex-maven-plugin</artifactId>
                     <versionRange>[1.6.1,)</versionRange>
                     <goals>
                       <goal>generate</goal>
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore />
+                    <execute />
                   </action>
                 </pluginExecution>
               </pluginExecutions>