You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2014/02/13 17:06:21 UTC

svn commit: r1567965 - in /uima/ruta/trunk: example-projects/ruta-ep-example-extensions/pom.xml ruta-core/pom.xml ruta-ep-engine/pom.xml ruta-ep-ide/pom.xml

Author: pkluegl
Date: Thu Feb 13 16:06:21 2014
New Revision: 1567965

URL: http://svn.apache.org/r1567965
Log:
UIMA-3539
- exclude stringtemplate lib

Modified:
    uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
    uima/ruta/trunk/ruta-core/pom.xml
    uima/ruta/trunk/ruta-ep-engine/pom.xml
    uima/ruta/trunk/ruta-ep-ide/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1567965&r1=1567964&r2=1567965&view=diff
==============================================================================
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Thu Feb 13 16:06:21 2014
@@ -61,6 +61,12 @@
       <groupId>org.antlr</groupId>
       <artifactId>antlr-runtime</artifactId>
       <version>3.5</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.antlr</groupId> 
+          <artifactId>stringtemplate</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.eclipse.equinox</groupId>

Modified: uima/ruta/trunk/ruta-core/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/pom.xml?rev=1567965&r1=1567964&r2=1567965&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-core/pom.xml (original)
+++ uima/ruta/trunk/ruta-core/pom.xml Thu Feb 13 16:06:21 2014
@@ -44,6 +44,12 @@
       <groupId>org.antlr</groupId>
       <artifactId>antlr-runtime</artifactId>
       <version>3.5</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.antlr</groupId> 
+          <artifactId>stringtemplate</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.htmlparser</groupId>

Modified: uima/ruta/trunk/ruta-ep-engine/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-engine/pom.xml?rev=1567965&r1=1567964&r2=1567965&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-ep-engine/pom.xml (original)
+++ uima/ruta/trunk/ruta-ep-engine/pom.xml Thu Feb 13 16:06:21 2014
@@ -35,8 +35,6 @@ licensed under the Common Public License
   <description>Provides the UIMA Ruta engine to other Eclipse 
     plugins for their use</description>
   <dependencies>
-    <!-- <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> 
-      <version>3.4</version> <scope>compile</scope> </dependency> -->
     <dependency>
       <groupId>org.apache.uima</groupId>
       <artifactId>ruta-core</artifactId>
@@ -48,6 +46,12 @@ licensed under the Common Public License
       <artifactId>antlr-runtime</artifactId>
       <version>3.5</version>
       <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.antlr</groupId> 
+          <artifactId>stringtemplate</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.htmlparser</groupId>
@@ -306,7 +310,7 @@ licensed under the Common Public License
             </goals>
             <configuration>
               <outputDirectory>${project.build.outputDirectory}</outputDirectory>
-              <excludeArtifactIds>uimaj-core,uimaj-tools,uimaj-document-annotation,uimaj-adapter-vinci,jVinci,uimaj-cpe,tools,aopalliance,spring-aop</excludeArtifactIds>
+              <excludeArtifactIds>uimaj-core,uimaj-tools,uimaj-document-annotation,uimaj-adapter-vinci,jVinci,uimaj-cpe,tools,aopalliance,spring-aop,stringtemplate,antlr</excludeArtifactIds>
             </configuration>
           </execution>
         </executions>

Modified: uima/ruta/trunk/ruta-ep-ide/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-ide/pom.xml?rev=1567965&r1=1567964&r2=1567965&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-ep-ide/pom.xml (original)
+++ uima/ruta/trunk/ruta-ep-ide/pom.xml Thu Feb 13 16:06:21 2014
@@ -36,8 +36,6 @@
   <url>${uimaWebsiteUrl}</url>
   <description>Provides the UIMA Ruta development environment for Eclipse</description>
   <dependencies>
-    <!-- <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> <version>3.4</version> 
-      <scope>compile</scope> </dependency> -->
     <dependency>
       <groupId>org.eclipse.dltk</groupId>
       <artifactId>core</artifactId>