You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2009/02/27 23:37:47 UTC

svn commit: r748725 - /incubator/rat/main/trunk/apache-rat/pom.xml

Author: rdonkin
Date: Fri Feb 27 22:37:47 2009
New Revision: 748725

URL: http://svn.apache.org/viewvc?rev=748725&view=rev
Log:
Still have problems ensuring NOTICE is right. RAT-38 https://issues.apache.org/jira/browse/RAT-38

Modified:
    incubator/rat/main/trunk/apache-rat/pom.xml

Modified: incubator/rat/main/trunk/apache-rat/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/pom.xml?rev=748725&r1=748724&r2=748725&view=diff
==============================================================================
--- incubator/rat/main/trunk/apache-rat/pom.xml (original)
+++ incubator/rat/main/trunk/apache-rat/pom.xml Fri Feb 27 22:37:47 2009
@@ -66,36 +66,37 @@
     </resources>    
     <plugins>
       <plugin>
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.0</version>
+        <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>
+            <phase>compile</phase>
             <goals>
-              <goal>process</goal>
+              <goal>unpack-dependencies</goal>
             </goals>
             <configuration>
-              <resourceBundles>
-                <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
-              </resourceBundles>
-              <properties>
-                  <addLicense>true</addLicense>
-              </properties>
+              <includeScope>runtime</includeScope>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+              <overWriteIfNewer>false</overWriteIfNewer>
             </configuration>
           </execution>
         </executions>
       </plugin>
       <plugin>
-        <artifactId>maven-dependency-plugin</artifactId>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0</version>
         <executions>
           <execution>
-            <phase>process</phase>
+            <phase>compile</phase>
             <goals>
-              <goal>unpack-dependencies</goal>
+              <goal>process</goal>
             </goals>
             <configuration>
-              <includeScope>runtime</includeScope>
-              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
-              <overWriteIfNewer>false</overWriteIfNewer>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+              </resourceBundles>
+              <properties>
+                  <addLicense>true</addLicense>
+              </properties>
             </configuration>
           </execution>
         </executions>