You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by oc...@apache.org on 2008/06/04 03:52:41 UTC

svn commit: r662942 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml

Author: oching
Date: Tue Jun  3 18:52:41 2008
New Revision: 662942

URL: http://svn.apache.org/viewvc?rev=662942&view=rev
Log:
[MRM-824]
-excluded xalan, velocity-dep, xml-apis, wstx-asl, stax-utils and xercesImpl jars in WEB-INF/lib

Modified:
    archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml

Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml
URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml?rev=662942&r1=662941&r2=662942&view=diff
==============================================================================
--- archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml (original)
+++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp/pom.xml Tue Jun  3 18:52:41 2008
@@ -255,6 +255,11 @@
       <artifactId>commons-codec</artifactId>
       <version>1.3</version>
     </dependency>
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax</artifactId>
+      <version>1.2.0</version>
+    </dependency>
   </dependencies>
   <build>
     <plugins>
@@ -326,6 +331,7 @@
                Specifically setting this to false to avoid accidental jar file creation. -->
           <archiveClasses>false</archiveClasses>
           <dependentWarExcludes>META-INF/**,WEB-INF/web.xml,WEB-INF/classes/xwork.xml</dependentWarExcludes>
+          <warSourceExcludes>WEB-INF/lib/xalan-*.jar,WEB-INF/lib/velocity-dep-*.jar,WEB-INF/lib/xml-apis-*.jar,WEB-INF/lib/wstx-asl-*.jar,WEB-INF/lib/stax-utils-*.jar,WEB-INF/lib/xercesImpl-*.jar</warSourceExcludes>
         </configuration>
         <!-- TODO: would be good to make the jetty plugin aware of these and remove the below -->
         <executions>
@@ -335,7 +341,7 @@
               <!-- Needed to get the plexus-security war overlay to do its thing before jetty:run -->
               <goal>inplace</goal>
             </goals>
-          </execution>
+          </execution>  
         </executions>
       </plugin>
       <plugin>