diff options
author | Joakim Erdfelt <joakime@apache.org> | 2007-10-12 18:01:04 +0000 |
---|---|---|
committer | Joakim Erdfelt <joakime@apache.org> | 2007-10-12 18:01:04 +0000 |
commit | 6981dfa58f435854080bf505581486c82aae502c (patch) | |
tree | 00bb903c86952ddcb2e758c3335253a6e6c917ed /pom.xml | |
parent | fb5386209f4dab341eacb530521428c18d9cfbd4 (diff) | |
download | archiva-6981dfa58f435854080bf505581486c82aae502c.tar.gz archiva-6981dfa58f435854080bf505581486c82aae502c.zip |
[MRM-459] prune the distributed dependencies
Pruning the following ...
* ant-optional
* jdom
* classworlds
* jta
* xerces
Setting to <scope>provided</scope> the following ...
* servlet-api
* jsp-api
* jstl-api
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@584218 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -385,6 +385,12 @@ <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1</version> + <exclusions> + <exclusion> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>javax.jdo</groupId> @@ -400,16 +406,24 @@ <groupId>jpox</groupId> <artifactId>jpox</artifactId> <version>1.1.7</version> + <exclusions> + <exclusion> + <groupId>javax.transaction</groupId> + <artifactId>jta</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> + <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.1.2</version> + <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> @@ -582,6 +596,12 @@ <artifactId>redback-xwork-content</artifactId> <version>${redback.version}</version> <type>war</type> + <exclusions> + <exclusion> + <groupId>classworlds</groupId> + <artifactId>classworlds</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus.redback</groupId> @@ -597,6 +617,16 @@ <groupId>org.codehaus.plexus.registry</groupId> <artifactId>plexus-registry-commons</artifactId> <version>1.0-alpha-2</version> + <exclusions> + <exclusion> + <groupId>ant</groupId> + <artifactId>ant-optional</artifactId> + </exclusion> + <exclusion> + <groupId>jdom</groupId> + <artifactId>jdom</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus.webdav</groupId> |