diff options
author | Brett Porter <brett@apache.org> | 2009-03-14 02:33:57 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2009-03-14 02:33:57 +0000 |
commit | 537ff689e7e39ce7ca4d9f0b94abcece5ee7c569 (patch) | |
tree | d905efd2f35bab56d08c436288943c77820b63e2 /pom.xml | |
parent | b24700028788de56ab0367f1c2379f0b695e4c0f (diff) | |
download | archiva-537ff689e7e39ce7ca4d9f0b94abcece5ee7c569.tar.gz archiva-537ff689e7e39ce7ca4d9f0b94abcece5ee7c569.zip |
[MRM-1140] centralise logging through slf4j
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@753590 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 27 |
1 files changed, 10 insertions, 17 deletions
@@ -75,13 +75,13 @@ <bannedDependencies> <excludes> <exclude>org.codehaus.plexus:plexus-container-default</exclude> + <exclude>org.codehaus.plexus:plexus-log4j-logging</exclude> <exclude>commons-logging:commons-logging</exclude> <exclude>velocity:velocity-dep</exclude> <exclude>classworlds:classworlds</exclude> <exclude>javax.transaction:jta</exclude> <exclude>javax.sql:jdbc-stdext</exclude> <exclude>ant:ant-optional</exclude> - <!-- exclude>org.apache.maven.wagon:wagon-http-lightweight</exclude --> <exclude>xom:xom</exclude> <exclude>org.codehaus.plexus:plexus-xwork-integration</exclude> </excludes> @@ -214,12 +214,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>httpunit</groupId> - <artifactId>httpunit</artifactId> - <version>1.6.2</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>easymock</groupId> <artifactId>easymock</artifactId> <version>1.2_Java1.3</version> @@ -231,20 +225,16 @@ <version>1.2</version> <scope>test</scope> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>jcl104-over-slf4j</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <scope>test</scope> - </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> + <groupId>httpunit</groupId> + <artifactId>httpunit</artifactId> + <version>1.6.2</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-webdav</artifactId> <version>1.5.0</version> @@ -890,6 +880,7 @@ <groupId>org.slf4j</groupId> <artifactId>jcl104-over-slf4j</artifactId> <version>1.5.0</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> @@ -900,11 +891,13 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.5.0</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.0</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>taglibs</groupId> |