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 2011/03/09 19:32:31 UTC

svn commit: r1079918 - /uima/uima-as/trunk/uima-as/pom.xml

Author: cwiklik
Date: Wed Mar  9 18:32:31 2011
New Revision: 1079918

URL: http://svn.apache.org/viewvc?rev=1079918&view=rev
Log:
UIMA-2085 Modified to run 'copy-resource' maven plugin to copy UIMA-AS NOTICE and LICENSE files to a directory used by maven source packaging plugin

Modified:
    uima/uima-as/trunk/uima-as/pom.xml

Modified: uima/uima-as/trunk/uima-as/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/trunk/uima-as/pom.xml?rev=1079918&r1=1079917&r2=1079918&view=diff
==============================================================================
--- uima/uima-as/trunk/uima-as/pom.xml (original)
+++ uima/uima-as/trunk/uima-as/pom.xml Wed Mar  9 18:32:31 2011
@@ -446,6 +446,33 @@
         </executions>
       </plugin>
 		
+	<plugin>
+        <artifactId>maven-resources-plugin</artifactId>
+        <version>2.5</version>
+        <executions>
+          <execution>
+            <id>copy-resources</id>
+            <phase>process-resources</phase>
+            <goals>
+              <goal>copy-resources</goal>
+            </goals>
+            <configuration>
+            <overwrite>true</overwrite>
+              <outputDirectory>target/maven-shared-archive-resources/META-INF</outputDirectory>
+              <resources>          
+                <resource>
+                  <directory>.</directory>
+				  <includes>
+                     <include>LICENSE</include>
+                     <include>NOTICE</include>
+                  </includes>                  
+                </resource>
+              </resources>              
+            </configuration>            
+          </execution>
+        </executions>
+      </plugin>	
+		
     </plugins>
     
 	  <pluginManagement>