You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2013/11/08 19:07:25 UTC

svn commit: r1540140 - /uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml

Author: cwiklik
Date: Fri Nov  8 18:07:24 2013
New Revision: 1540140

URL: http://svn.apache.org/r1540140
Log:
UIMA-3419 enabled rat plugin

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml?rev=1540140&r1=1540139&r2=1540140&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml Fri Nov  8 18:07:24 2013
@@ -817,13 +817,30 @@
 		<pluginManagement>
 		
 		 <plugins>
-			<plugin> 
+			
+		 
+		    <!-- Prereq Java 6 because of lib dependencies -->
+		    <plugin>
+		      <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.6</source>
+            <target>1.6</target>
+          </configuration>		      
+		    </plugin>
+		  </plugins>
+		</pluginManagement>
+        
+        
+        
+        <!--  define common plugins that are shared by every pom -->
+		<plugins>
+		<plugin> 
 			  <groupId>org.apache.rat</groupId> 
 			  <artifactId>apache-rat-plugin</artifactId> 
 			  <version>0.10</version>
 			  <executions> 
 			      <execution> 
-			           <phase>install</phase>
+			          
 			           <id>default-cli</id> 
 			           <configuration> 
 			              
@@ -852,19 +869,6 @@
 				    </execution> 
 				</executions> 
 			</plugin>
-		 
-		    <!-- Prereq Java 6 because of lib dependencies -->
-		    <plugin>
-		      <artifactId>maven-compiler-plugin</artifactId>
-          <configuration>
-            <source>1.6</source>
-            <target>1.6</target>
-          </configuration>		      
-		    </plugin>
-		  </plugins>
-		</pluginManagement>
-        <!--  define common plugins that are shared by every pom -->
-		<plugins>
             <!-- Each jar produced should have metadata attached to a Manifest -->
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>