You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by at...@apache.org on 2009/05/15 16:04:04 UTC

svn commit: r775139 - /portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml

Author: ate
Date: Fri May 15 14:04:04 2009
New Revision: 775139

URL: http://svn.apache.org/viewvc?rev=775139&view=rev
Log:
APA-13: workaround for war processing of m-r-r-plugin causing the generated NOTICE and LICENSE file to be put under WEB-INF/classes/META-INF

Modified:
    portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml

Modified: portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml?rev=775139&r1=775138&r2=775139&view=diff
==============================================================================
--- portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml (original)
+++ portals/applications/dbbrowser/trunk/dbbrowser-war/pom.xml Fri May 15 14:04:04 2009
@@ -66,7 +66,30 @@
   	<version>${derby.version}</version>
   </dependency>
   </dependencies>
+  
    <build>
+   
      <finalName>apa-dbbrowser</finalName>
+
+     <plugins>
+      <plugin>
+        <!-- workaround for war processing of m-r-r-plugin causing the generated NOTICE and LICENSE file to be put under WEB-INF/classes/META-INF -->
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>${project.build.directory}/${build.finalName}</outputDirectory>
+              <attached>false</attached>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+     </plugins>
+     
   </build>
+  
 </project>
\ No newline at end of file