[jboss-cvs] JBossAS SVN: r80344 - projects/server-manager/trunk.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Sun Nov 2 06:32:19 EST 2008
Author: akostadinov
Date: 2008-11-02 06:32:19 -0500 (Sun, 02 Nov 2008)
New Revision: 80344
Modified:
projects/server-manager/trunk/pom.xml
Log:
JBASM-15 use jboss-logging instead of Commons Logging to avoid additional dependencies - see http://lists.jboss.org/pipermail/jboss-development/2008-October/012820.html
Modified: projects/server-manager/trunk/pom.xml
===================================================================
--- projects/server-manager/trunk/pom.xml 2008-11-02 11:24:26 UTC (rev 80343)
+++ projects/server-manager/trunk/pom.xml 2008-11-02 11:32:19 UTC (rev 80344)
@@ -36,7 +36,6 @@
<!-- External -->
<version.junit_junit>4.4</version.junit_junit>
- <version.commons.logging_commons_logging>1.1.1</version.commons.logging_commons_logging>
</properties>
@@ -159,26 +158,25 @@
</dependency>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${version.junit_junit}</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
<groupId>org.jboss.security</groupId>
<artifactId>jboss-security-spi</artifactId>
<version>2.0.2.CR9</version>
<scope>runtime</scope>
</dependency>
- <!-- Apache Commons Logging -->
<dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>${version.commons.logging_commons_logging}</version>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>2.0.5.GA</version>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${version.junit_junit}</version>
+ <scope>test</scope>
+ </dependency>
+
</dependencies>
</project>
More information about the jboss-cvs-commits
mailing list