[jboss-svn-commits] JBoss Common SVN: r2779 - common-logging-jdk/trunk.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Mar 31 09:11:51 EDT 2008


Author: adrian at jboss.org
Date: 2008-03-31 09:11:51 -0400 (Mon, 31 Mar 2008)
New Revision: 2779

Modified:
   common-logging-jdk/trunk/.classpath
   common-logging-jdk/trunk/.project
   common-logging-jdk/trunk/pom.xml
Log:
Fixup the common message and remove circular dependencies

Modified: common-logging-jdk/trunk/.classpath
===================================================================
--- common-logging-jdk/trunk/.classpath	2008-03-31 13:11:42 UTC (rev 2778)
+++ common-logging-jdk/trunk/.classpath	2008-03-31 13:11:51 UTC (rev 2779)
@@ -1,8 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry kind="src" path="src/main/java"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/common-core"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/common-logging-spi"/>
-	<classpathentry kind="output" path="target/eclipse-classes"/>
-</classpath>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="src" path="/common-core"/>
+  <classpathentry kind="src" path="/common-logging-spi"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+</classpath>
\ No newline at end of file

Modified: common-logging-jdk/trunk/.project
===================================================================
--- common-logging-jdk/trunk/.project	2008-03-31 13:11:42 UTC (rev 2778)
+++ common-logging-jdk/trunk/.project	2008-03-31 13:11:51 UTC (rev 2779)
@@ -1,14 +1,10 @@
 <projectDescription>
-  <name>common-logging-jdk</name>
-  <comment>JBoss Logging JDK classes</comment>
-  <projects>
-    <project>jboss-common-core</project>
-    <project>jboss-logging-spi</project>
-  </projects>
+  <name>jboss-common-logging-jdk</name>
+  <comment>JBoss Common Logging JDK Implementation</comment>
+  <projects/>
   <buildSpec>
     <buildCommand>
       <name>org.eclipse.jdt.core.javabuilder</name>
-      <arguments/>
     </buildCommand>
   </buildSpec>
   <natures>

Modified: common-logging-jdk/trunk/pom.xml
===================================================================
--- common-logging-jdk/trunk/pom.xml	2008-03-31 13:11:42 UTC (rev 2778)
+++ common-logging-jdk/trunk/pom.xml	2008-03-31 13:11:51 UTC (rev 2779)
@@ -61,9 +61,16 @@
       <version>2.0.5-SNAPSHOT</version>
     </dependency>
     <dependency>
-      <groupId>jboss</groupId>
+      <groupId>org.jboss</groupId>
       <artifactId>jboss-common-core</artifactId>
-      <version>2.0.4.GA</version>
+      <version>2.2.5-SNAPSHOT</version>
+      <optional>true</optional> <!-- For property editors used by DOMConfigurator -->
+      <exclusions>
+        <exclusion>
+          <groupId>org.jboss</groupId>
+          <artifactId>jboss-common-logging-spi</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>  
 </project>




More information about the jboss-svn-commits mailing list