[MRM-824]

-excluded xalan, velocity-dep, xml-apis, wstx-asl, stax-utils and xercesImpl jars in WEB-INF/lib


git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@662942 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2008-06-04 01:52:41 +00:00
parent 56ed9834bc
commit f4ce1aafc2

View File

@ -255,6 +255,11 @@
<artifactId>commons-codec</artifactId> <artifactId>commons-codec</artifactId>
<version>1.3</version> <version>1.3</version>
</dependency> </dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
@ -326,6 +331,7 @@
Specifically setting this to false to avoid accidental jar file creation. --> Specifically setting this to false to avoid accidental jar file creation. -->
<archiveClasses>false</archiveClasses> <archiveClasses>false</archiveClasses>
<dependentWarExcludes>META-INF/**,WEB-INF/web.xml,WEB-INF/classes/xwork.xml</dependentWarExcludes> <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> </configuration>
<!-- TODO: would be good to make the jetty plugin aware of these and remove the below --> <!-- TODO: would be good to make the jetty plugin aware of these and remove the below -->
<executions> <executions>
@ -335,7 +341,7 @@
<!-- Needed to get the plexus-security war overlay to do its thing before jetty:run --> <!-- Needed to get the plexus-security war overlay to do its thing before jetty:run -->
<goal>inplace</goal> <goal>inplace</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>