You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/11/05 23:01:42 UTC

svn commit: r711712 - in /myfaces/tobago/branches/tobago-1.0.x: core/pom.xml pom.xml sandbox/pom.xml

Author: bommel
Date: Wed Nov  5 14:01:42 2008
New Revision: 711712

URL: http://svn.apache.org/viewvc?rev=711712&view=rev
Log:
update to maven-resource-plugin 2.3

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/pom.xml
    myfaces/tobago/branches/tobago-1.0.x/pom.xml
    myfaces/tobago/branches/tobago-1.0.x/sandbox/pom.xml

Modified: myfaces/tobago/branches/tobago-1.0.x/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/pom.xml?rev=711712&r1=711711&r2=711712&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/pom.xml Wed Nov  5 14:01:42 2008
@@ -111,10 +111,11 @@
           <execution>
             <id>copy-faces-config</id>
             <goals>
-              <goal>resources</goal>
+              <goal>copy-resources</goal>
             </goals>
             <phase>process-classes</phase>
             <configuration>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
               <resources>
                 <resource>
                   <targetPath>META-INF</targetPath>
@@ -123,6 +124,20 @@
               </resources>
             </configuration>
           </execution>
+          <execution>
+            <id>copy-tld</id>
+            <goals><goal>copy-resources</goal></goals>
+            <phase>process-classes</phase>
+            <configuration>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+              <resources>
+                <resource>
+                  <targetPath>META-INF</targetPath>
+                  <directory>${project.build.directory}/generated-tld</directory>
+                </resource>
+              </resources>
+            </configuration>
+          </execution>
         </executions>
       </plugin>
       <plugin>

Modified: myfaces/tobago/branches/tobago-1.0.x/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/pom.xml?rev=711712&r1=711711&r2=711712&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/pom.xml Wed Nov  5 14:01:42 2008
@@ -588,6 +588,11 @@
             <minSeverity>info</minSeverity>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>   
       </plugins>
     </pluginManagement>
   </build>

Modified: myfaces/tobago/branches/tobago-1.0.x/sandbox/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/sandbox/pom.xml?rev=711712&r1=711711&r2=711712&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/sandbox/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/sandbox/pom.xml Wed Nov  5 14:01:42 2008
@@ -118,9 +118,10 @@
         <executions>
           <execution>
             <id>copy-faces-config</id>
-            <goals><goal>resources</goal></goals>
+            <goals><goal>copy-resources</goal></goals>
             <phase>process-classes</phase>
             <configuration>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
               <resources>
                 <resource>
                   <targetPath>META-INF</targetPath>
@@ -129,6 +130,20 @@
               </resources>
             </configuration>
           </execution>
+          <execution>
+            <id>copy-tld</id>
+            <goals><goal>copy-resources</goal></goals>
+            <phase>process-classes</phase>
+            <configuration>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+              <resources>
+                <resource>
+                  <targetPath>META-INF</targetPath>
+                  <directory>${project.build.directory}/generated-tld</directory>
+                </resource>
+              </resources>
+            </configuration>
+          </execution>
         </executions>
       </plugin>
     </plugins>