[jboss-svn-commits] JBoss Common SVN: r2054 - build/trunk common-core/trunk common-logging-jdk/trunk common-logging-jdk/trunk/src/main/java/org/jboss/logging/jdk common-logging-log4j/trunk common-logging-log4j/trunk/src/main/java/org/jboss/logging/log4j common-logging-spi/trunk common-logging-spi/trunk/src/main/java/org/jboss/logging

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Sep 24 10:00:48 EDT 2006


Author: scott.stark at jboss.org
Date: 2006-09-24 10:00:36 -0400 (Sun, 24 Sep 2006)
New Revision: 2054

Added:
   build/trunk/.project
   common-core/trunk/.classpath
   common-core/trunk/.project
   common-logging-log4j/trunk/.classpath
   common-logging-log4j/trunk/.project
   common-logging-spi/trunk/.classpath
   common-logging-spi/trunk/.project
Modified:
   build/trunk/pom.xml
   common-core/trunk/
   common-core/trunk/pom.xml
   common-logging-jdk/trunk/
   common-logging-jdk/trunk/pom.xml
   common-logging-jdk/trunk/src/main/java/org/jboss/logging/jdk/JBossJDKLogManager.java
   common-logging-log4j/trunk/
   common-logging-log4j/trunk/pom.xml
   common-logging-log4j/trunk/src/main/java/org/jboss/logging/log4j/Log4jLoggerPlugin.java
   common-logging-spi/trunk/
   common-logging-spi/trunk/pom.xml
   common-logging-spi/trunk/src/main/java/org/jboss/logging/Logger.java
Log:
Update to 2.0.1.GA, add eclipse project/classpaths, fix log4j/jdk logginer plugin package names

Added: build/trunk/.project
===================================================================
--- build/trunk/.project	2006-09-24 12:43:31 UTC (rev 2053)
+++ build/trunk/.project	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>build</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+	</buildSpec>
+	<natures>
+	</natures>
+</projectDescription>

Modified: build/trunk/pom.xml
===================================================================
--- build/trunk/pom.xml	2006-09-24 12:43:31 UTC (rev 2053)
+++ build/trunk/pom.xml	2006-09-24 14:00:36 UTC (rev 2054)
@@ -1,8 +1,23 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<!--
+A top level maven pom that expects a structure like: 
+  build/pom.xml
+  common-core/pom.xml
+  common-logging-jdk/pom.xml
+  common-logging-spi/pom.xml
+  common-logging-log4j/pom.xml
+
+This can be done using:  
+svn co https://svn.jboss.org/repos/common/build/trunk/ build
+svn co https://svn.jboss.org/repos/common/common-core/trunk common-core
+svn co https://svn.jboss.org/repos/common/common-logging-spi/trunk/ common-logging-spi
+svn co https://svn.jboss.org/repos/common/common-logging-jdk/trunk/ common-logging-jdk
+svn co https://svn.jboss.org/repos/common/common-logging-log4j/trunk/ common-logging-log4j
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss</groupId>
-  <version>2.0-SNAPSHOT</version>
+  <version>2.0.1.GA</version>
   <artifactId>jboss-common</artifactId>
   <name>JBoss Common Build</name>
   <url>http://www.jboss.org</url>
@@ -20,10 +35,10 @@
 
   <packaging>pom</packaging>
   <modules>
-    <module>../../common-core/trunk</module>
-    <module>../../common-logging-spi/trunk</module>
-    <module>../../common-logging-log4j/trunk</module>
-    <module>../../common-logging-jdk/trunk</module>
+    <module>../common-core</module>
+    <module>../common-logging-spi</module>
+    <module>../common-logging-log4j</module>
+    <module>../common-logging-jdk</module>
   </modules>
 </project>
 


Property changes on: common-core/trunk
___________________________________________________________________
Name: svn:ignore
   + target


Added: common-core/trunk/.classpath
===================================================================
--- common-core/trunk/.classpath	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-core/trunk/.classpath	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,13 @@
+<?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 kind="var" path="M2_REPO/apache-xerces/xml-apis/2.7.1/xml-apis-2.7.1.jar"/>
+	<classpathentry kind="var" path="M2_REPO/apache-slide/webdavlib/2.0/webdavlib-2.0.jar"/>
+	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
+	<classpathentry kind="src" path="/jboss-logging-spi"/>
+	<classpathentry kind="var" path="M2_REPO/oswego-concurrent/concurrent/1.3.4/concurrent-1.3.4.jar"/>
+	<classpathentry kind="var" path="M2_REPO/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar"/>
+	<classpathentry kind="var" path="M2_REPO/apache-log4j/log4j/1.2.8/log4j-1.2.8.jar"/>
+	<classpathentry kind="output" path="target/eclipse-classes"/>
+</classpath>

Added: common-core/trunk/.project
===================================================================
--- common-core/trunk/.project	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-core/trunk/.project	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,16 @@
+<projectDescription>
+  <name>jboss-common-core</name>
+  <comment>A set of commonly used classed classes</comment>
+  <projects>
+    <project>jboss-logging-spi</project>
+  </projects>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+      <arguments/>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Modified: common-core/trunk/pom.xml
===================================================================
--- common-core/trunk/pom.xml	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-core/trunk/pom.xml	2006-09-24 14:00:36 UTC (rev 2054)
@@ -4,7 +4,7 @@
   <groupId>jboss.common.core</groupId>
   <artifactId>jboss-common-core</artifactId>
   <packaging>jar</packaging>
-  <version>2.0.0</version>
+  <version>2.0.1.GA</version>
   <name>JBoss Common Classes</name>
   <url>http://www.jboss.org</url>
   <description>A set of commonly used classed classes</description>


Property changes on: common-logging-jdk/trunk
___________________________________________________________________
Name: svn:ignore
   + target


Modified: common-logging-jdk/trunk/pom.xml
===================================================================
--- common-logging-jdk/trunk/pom.xml	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-jdk/trunk/pom.xml	2006-09-24 14:00:36 UTC (rev 2054)
@@ -4,7 +4,7 @@
   <groupId>jboss.logging.jdk</groupId>
   <artifactId>jboss-logging-jdk</artifactId>
   <packaging>jar</packaging>
-  <version>2.0.0</version>
+  <version>2.0.1.GA</version>
   <name>JBoss Logging JDK</name>
   <url>http://www.jboss.org</url>
   <description>JBoss Logging JDK classes</description>

Modified: common-logging-jdk/trunk/src/main/java/org/jboss/logging/jdk/JBossJDKLogManager.java
===================================================================
--- common-logging-jdk/trunk/src/main/java/org/jboss/logging/jdk/JBossJDKLogManager.java	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-jdk/trunk/src/main/java/org/jboss/logging/jdk/JBossJDKLogManager.java	2006-09-24 14:00:36 UTC (rev 2054)
@@ -19,7 +19,7 @@
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
-package org.jboss.logging;
+package org.jboss.logging.jdk;
 
 import java.util.logging.LogManager;
 


Property changes on: common-logging-log4j/trunk
___________________________________________________________________
Name: svn:ignore
   + target


Added: common-logging-log4j/trunk/.classpath
===================================================================
--- common-logging-log4j/trunk/.classpath	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-log4j/trunk/.classpath	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,13 @@
+<?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 kind="var" path="M2_REPO/oswego-concurrent/concurrent/1.3.4/concurrent-1.3.4.jar"/>
+	<classpathentry kind="var" path="M2_REPO/apache-log4j/log4j/1.2.8/log4j-1.2.8.jar"/>
+	<classpathentry kind="src" path="/jboss-logging-spi"/>
+	<classpathentry kind="var" path="M2_REPO/apache-xerces/xml-apis/2.7.1/xml-apis-2.7.1.jar"/>
+	<classpathentry kind="var" path="M2_REPO/apache-slide/webdavlib/2.0/webdavlib-2.0.jar"/>
+	<classpathentry kind="src" path="/jboss-common-core"/>
+	<classpathentry kind="var" path="M2_REPO/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar"/>
+	<classpathentry kind="output" path="target/eclipse-classes"/>
+</classpath>

Added: common-logging-log4j/trunk/.project
===================================================================
--- common-logging-log4j/trunk/.project	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-log4j/trunk/.project	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,17 @@
+<projectDescription>
+  <name>jboss-logging-log4j</name>
+  <comment>JBoss Logging Log4j classes</comment>
+  <projects>
+    <project>jboss-logging-spi</project>
+    <project>jboss-common-core</project>
+  </projects>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+      <arguments/>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Modified: common-logging-log4j/trunk/pom.xml
===================================================================
--- common-logging-log4j/trunk/pom.xml	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-log4j/trunk/pom.xml	2006-09-24 14:00:36 UTC (rev 2054)
@@ -4,7 +4,7 @@
   <groupId>jboss.logging.log4j</groupId>
   <artifactId>jboss-logging-log4j</artifactId>
   <packaging>jar</packaging>
-  <version>2.0.0</version>
+  <version>2.0.1.GA</version>
   <name>JBoss Logging Log4j</name>
   <url>http://www.jboss.org</url>
   <description>JBoss Logging Log4j classes</description>

Modified: common-logging-log4j/trunk/src/main/java/org/jboss/logging/log4j/Log4jLoggerPlugin.java
===================================================================
--- common-logging-log4j/trunk/src/main/java/org/jboss/logging/log4j/Log4jLoggerPlugin.java	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-log4j/trunk/src/main/java/org/jboss/logging/log4j/Log4jLoggerPlugin.java	2006-09-24 14:00:36 UTC (rev 2054)
@@ -19,12 +19,15 @@
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
-package org.jboss.logging;
+package org.jboss.logging.log4j;
 
 import org.apache.log4j.LogManager;
 import org.apache.log4j.Level;
 import org.apache.log4j.Category;
 import org.apache.log4j.Priority;
+import org.jboss.logging.Logger;
+import org.jboss.logging.LoggerPlugin;
+import org.jboss.logging.XLevel;
 
 /**
  * Delegate for org.jboss.logging.Logger logging to log4j. Body of implementation


Property changes on: common-logging-spi/trunk
___________________________________________________________________
Name: svn:ignore
   + target


Added: common-logging-spi/trunk/.classpath
===================================================================
--- common-logging-spi/trunk/.classpath	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-spi/trunk/.classpath	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,6 @@
+<?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 kind="output" path="target/eclipse-classes"/>
+</classpath>

Added: common-logging-spi/trunk/.project
===================================================================
--- common-logging-spi/trunk/.project	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-spi/trunk/.project	2006-09-24 14:00:36 UTC (rev 2054)
@@ -0,0 +1,14 @@
+<projectDescription>
+  <name>jboss-logging-spi</name>
+  <comment>The JBoss Logging Framework Programming Interface</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+      <arguments/>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Modified: common-logging-spi/trunk/pom.xml
===================================================================
--- common-logging-spi/trunk/pom.xml	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-spi/trunk/pom.xml	2006-09-24 14:00:36 UTC (rev 2054)
@@ -4,7 +4,7 @@
   <groupId>jboss.logging</groupId>
   <artifactId>jboss-logging-spi</artifactId>
   <packaging>jar</packaging>
-  <version>2.0.0</version>
+  <version>2.0.1.GA</version>
   <name>JBoss Logging Programming Interface</name>
   <url>http://www.jboss.org</url>
   <description>The JBoss Logging Framework Programming Interface</description>

Modified: common-logging-spi/trunk/src/main/java/org/jboss/logging/Logger.java
===================================================================
--- common-logging-spi/trunk/src/main/java/org/jboss/logging/Logger.java	2006-09-24 12:43:31 UTC (rev 2053)
+++ common-logging-spi/trunk/src/main/java/org/jboss/logging/Logger.java	2006-09-24 14:00:36 UTC (rev 2054)
@@ -62,7 +62,7 @@
    /** The system property to look for an externalized LoggerPlugin implementation class */
    protected static String PLUGIN_CLASS_PROP = "org.jboss.logging.Logger.pluginClass";
    /** The default LoggerPlugin implementation is log4j */
-   protected static final String LOG4J_PLUGIN_CLASS_NAME = "org.jboss.logging.Log4jLoggerPlugin";
+   protected static final String LOG4J_PLUGIN_CLASS_NAME = "org.jboss.logging.log4j.Log4jLoggerPlugin";
    /** The LoggerPlugin implementation class to use */
    protected static Class pluginClass = null;
    /** The class name of the LoggerPlugin implementation class to use */




More information about the jboss-svn-commits mailing list