[jboss-remoting-commits] JBoss Remoting SVN: r4857 - in remoting3/trunk: api and 4 other directories.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu Feb 26 14:52:05 EST 2009


Author: david.lloyd at jboss.com
Date: 2009-02-26 14:52:05 -0500 (Thu, 26 Feb 2009)
New Revision: 4857

Added:
   remoting3/trunk/api/pom.xml
   remoting3/trunk/pom.xml
Removed:
   remoting3/trunk/build.properties
   remoting3/trunk/build.xml
Modified:
   remoting3/trunk/api/src/test/java/org/jboss/remoting/EndpointTestCase.java
   remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/CloseableTestCase.java
   remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/NameTestCase.java
   remoting3/trunk/api/src/test/java/org/jboss/remoting/stream/StreamsTestCase.java
   remoting3/trunk/samples/src/test/java/org/jboss/remoting/samples/protocol/basic/BasicTestCase.java
Log:
Mavenize

Added: remoting3/trunk/api/pom.xml
===================================================================
--- remoting3/trunk/api/pom.xml	                        (rev 0)
+++ remoting3/trunk/api/pom.xml	2009-02-26 19:52:05 UTC (rev 4857)
@@ -0,0 +1,45 @@
+<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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.jboss.remoting</groupId>
+    <artifactId>jboss-remoting</artifactId>
+    <packaging>jar</packaging>
+    <version>1.1.0.CR1</version>
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-api</artifactId>
+            <version>1.2.0.GA</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.marshalling</groupId>
+            <artifactId>marshalling-api</artifactId>
+            <version>1.0.0.GA</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.0.2</version>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+        </plugins>
+        <finalName>jboss-remoting</finalName>
+    </build>
+</project>

Modified: remoting3/trunk/api/src/test/java/org/jboss/remoting/EndpointTestCase.java
===================================================================
--- remoting3/trunk/api/src/test/java/org/jboss/remoting/EndpointTestCase.java	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/api/src/test/java/org/jboss/remoting/EndpointTestCase.java	2009-02-26 19:52:05 UTC (rev 4857)
@@ -34,7 +34,6 @@
 import org.jboss.remoting.CloseHandler;
 import org.jboss.remoting.Client;
 import org.jboss.remoting.IndeterminateOutcomeException;
-import org.jboss.remoting.test.support.LoggingHelper;
 import org.jboss.remoting.spi.RequestHandler;
 import org.jboss.remoting.spi.Handle;
 import org.jboss.xnio.IoUtils;
@@ -45,9 +44,6 @@
  *
  */
 public final class EndpointTestCase extends TestCase {
-    static {
-        LoggingHelper.init();
-    }
 
     private static final Logger log = Logger.getLogger(EndpointTestCase.class);
 

Modified: remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/CloseableTestCase.java
===================================================================
--- remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/CloseableTestCase.java	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/CloseableTestCase.java	2009-02-26 19:52:05 UTC (rev 4857)
@@ -33,15 +33,11 @@
 import org.jboss.xnio.log.Logger;
 import org.jboss.remoting.CloseHandler;
 import org.jboss.remoting.HandleableCloseable;
-import org.jboss.remoting.test.support.LoggingHelper;
 
 /**
  *
  */
 public final class CloseableTestCase extends TestCase {
-    static {
-        LoggingHelper.init();
-    }
 
     public static final Logger log = Logger.getLogger(CloseableTestCase.class);
 

Modified: remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/NameTestCase.java
===================================================================
--- remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/NameTestCase.java	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/api/src/test/java/org/jboss/remoting/spi/NameTestCase.java	2009-02-26 19:52:05 UTC (rev 4857)
@@ -23,7 +23,6 @@
 package org.jboss.remoting.spi;
 
 import junit.framework.TestCase;
-import org.jboss.remoting.test.support.LoggingHelper;
 import org.jboss.remoting.QualifiedName;
 import java.util.Iterator;
 
@@ -31,9 +30,6 @@
  *
  */
 public final class NameTestCase extends TestCase {
-    static {
-        LoggingHelper.init();
-    }
 
     public void testParseEmpty() {
         boolean ok = false;

Modified: remoting3/trunk/api/src/test/java/org/jboss/remoting/stream/StreamsTestCase.java
===================================================================
--- remoting3/trunk/api/src/test/java/org/jboss/remoting/stream/StreamsTestCase.java	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/api/src/test/java/org/jboss/remoting/stream/StreamsTestCase.java	2009-02-26 19:52:05 UTC (rev 4857)
@@ -28,15 +28,11 @@
 import java.util.Arrays;
 import java.util.Vector;
 import java.io.EOFException;
-import org.jboss.remoting.test.support.LoggingHelper;
 
 /**
  *
  */
 public final class StreamsTestCase extends TestCase {
-    static {
-        LoggingHelper.init();
-    }
 
     public void testCollectionObjectSink() throws Throwable {
         final ArrayList<String> strings = new ArrayList<String>();

Deleted: remoting3/trunk/build.properties
===================================================================
--- remoting3/trunk/build.properties	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/build.properties	2009-02-26 19:52:05 UTC (rev 4857)
@@ -1,4 +0,0 @@
-javac.source=1.5
-javac.target=1.5
-
-lib.apiviz.doclet=net.gleamynode.apiviz.APIviz

Deleted: remoting3/trunk/build.xml
===================================================================
--- remoting3/trunk/build.xml	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/build.xml	2009-02-26 19:52:05 UTC (rev 4857)
@@ -1,415 +0,0 @@
-<project name="JBoss Remoting 3" default="all" xmlns:mvn="urn:maven-artifact-ant">
-
-    <property file="build.properties.local"/>
-    <property file="build.properties"/>
-
-    <!-- ============================================== -->
-    <!-- LIBRARIES - Keep in alpha order by target name -->
-    <!-- ============================================== -->
-
-    <property name="maven.ant.file" value="maven-ant-tasks.jar"/>
-
-    <target name="jboss.repository" depends="maven-ant">
-        <mvn:remoteRepository id="jboss.repository" url="http://repository.jboss.org/maven2"/>
-    </target>
-
-    <target name="maven-ant.check">
-        <available property="maven-ant.exists" file="${maven.ant.file}"/>
-    </target>
-
-    <target name="maven-ant.fetch" depends="maven-ant.check" unless="maven-ant.exists">
-        <get src="http://repository.jboss.org/maven2/org/apache/maven/maven-ant-tasks/2.0.9/maven-ant-tasks-2.0.9.jar" dest="${maven.ant.file}"/>
-    </target>
-
-    <target name="maven-ant" depends="maven-ant.fetch">
-        <typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant">
-            <classpath>
-                <pathelement location="${maven.ant.file}"/>
-            </classpath>
-        </typedef>
-    </target>
-
-    <!-- External library: apiviz -->
-
-    <target name="lib.apiviz" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.apiviz.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.apiviz" artifactId="apiviz" version="1.2.5.GA"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- External library: JUnit -->
-
-    <target name="lib.junit" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.junit.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="junit" artifactId="junit" version="3.8.2"/>
-        </mvn:dependencies>
-        <property name="lib.junit.local" refid="lib.junit.classpath"/>
-    </target>
-
-    <!-- External library: Marshalling API -->
-
-    <target name="lib.marshalling-api" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.marshalling-api.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.marshalling" artifactId="marshalling-api" version="1.0.0.GA"/>
-        </mvn:dependencies>
-        <property name="lib.marshalling-api.local" refid="lib.marshalling-api.classpath"/>
-    </target>
-
-    <!-- External library: Remoting 3 Multiplex -->
-
-    <target name="lib.remoting3-multiplex" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.river.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.remoting" artifactId="remoting3-multiplex" version="1.0.0.GA"/>
-        </mvn:dependencies>
-        <property name="lib.remoting3-multiplex.local" refid="lib.remoting3-multiplex.classpath"/>
-    </target>
-
-    <!-- External library: River -->
-
-    <target name="lib.river" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.river.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.marshalling" artifactId="river" version="1.0.0.GA"/>
-        </mvn:dependencies>
-        <property name="lib.river.local" refid="lib.river.classpath"/>
-    </target>
-
-    <!-- External library: XNIO api -->
-
-    <target name="lib.xnio-api" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.xnio-api.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.xnio" artifactId="xnio-api" version="1.2.0.GA"/>
-        </mvn:dependencies>
-        <property name="lib.xnio-api.local" refid="lib.xnio-api.classpath"/>
-    </target>
-
-    <!-- External library: XNIO nio -->
-
-    <target name="lib.xnio-nio" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.xnio-nio.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.xnio" artifactId="xnio-nio" version="1.2.0.GA"/>
-        </mvn:dependencies>
-        <property name="lib.xnio-nio.local" refid="lib.xnio-nio.classpath"/>
-    </target>
-
-    <!-- ============================================== -->
-    <!-- MODULES - Keep in alpha order by target name   -->
-    <!-- ============================================== -->
-
-    <!-- api module -->
-
-    <target name="api.compile.depcheck">
-        <mkdir dir="api/target/main"/>
-        <uptodate property="api.compile.uptodate" targetfile="api/target/main/.lastcompile">
-            <srcfiles dir="api/src/main/java">
-                <include name="**/"/>
-                <include name="**/*.java"/>
-                <exclude name="**/.*"/>
-            </srcfiles>
-        </uptodate>
-    </target>
-
-    <target name="api.compile" depends="api.compile.depcheck" unless="api.compile.uptodate">
-        <mkdir dir="api/target/main/classes"/>
-        <javac
-                source="${javac.source}"
-                target="${javac.target}"
-                srcdir="api/src/main/java"
-                destdir="api/target/main/classes"
-                debug="true">
-            <compilerarg value="-Xlint:unchecked"/>
-            <classpath>
-                <path refid="lib.marshalling-api.classpath"/>
-                <path refid="lib.xnio-api.classpath"/>
-            </classpath>
-        </javac>
-        <touch file="api/target/main/.lastcompile" verbose="false"/>
-    </target>
-
-    <target name="api.test.compile.depcheck">
-        <mkdir dir="api/target/test"/>
-        <uptodate property="api.compile.uptodate" targetfile="api/target/test/.lastcompile">
-            <srcfiles dir="api/src/test/java">
-                <include name="**/"/>
-                <include name="**/*.java"/>
-                <exclude name="**/.*"/>
-            </srcfiles>
-        </uptodate>
-    </target>
-
-    <target name="api.test.compile" depends="lib.junit,api.compile,api.test.compile.depcheck" unless="api.test.compile.uptodate">
-        <mkdir dir="api/target/test/classes"/>
-        <javac
-                source="${javac.source}"
-                target="${javac.target}"
-                srcdir="api/src/test/java"
-                destdir="api/target/test/classes"
-                debug="true">
-            <compilerarg value="-Xlint:unchecked"/>
-            <classpath>
-                <path refid="api.classpath"/>
-                <path refid="testing-support.classpath"/>
-                <path refid="lib.junit.classpath"/>
-            </classpath>
-        </javac>
-        <touch file="api/target/test/.lastcompile" verbose="false"/>
-    </target>
-
-    <target name="api.test.pseudotarget">
-        <echo message="============================================="/>
-        <echo message="${message}"/>
-        <echo message="============================================="/>
-        <mkdir dir="api/target/test-results"/>
-        <junit printsummary="true" fork="yes" includeantruntime="true">
-            <sysproperty key="build.home" value="${basedir}"/>
-            <sysproperty key="ant.library.dir" value="${ant.home}/lib"/>
-            <sysproperty key="lib.junit.local" value="${lib.junit.local}"/>
-            <sysproperty key="lib.marshalling-api.local" value="${lib.marshalling-api.local}"/>
-            <sysproperty key="lib.xnio-api.local" value="${lib.xnio-api.local}"/>
-            <jvmarg line="${test.jvmargs}"/>
-            <formatter type="plain" extension="${extension}"/>
-            <classpath>
-                <path refid="api.classpath"/>
-                <path refid="testing-support.classpath"/>
-                <pathelement location="api/target/test/classes"/>
-                <path refid="lib.junit.classpath"/>
-            </classpath>
-            <batchtest fork="yes" todir="api/target/test-results"
-                       haltonfailure="no">
-               <fileset dir="api/target/test/classes">
-                   <include name="**/*TestCase.class"/>
-               </fileset>
-            </batchtest>
-        </junit>
-    </target>
-
-    <target name="api.test" depends="api,testing-support,api.test.compile">
-        <antcall inheritall="true" inheritrefs="true" target="api.test.pseudotarget">
-            <param name="extension" value=".txt"/>
-            <param name="message" value="Running with no security manager"/>
-            <param name="test.jvmargs" value="-Ddummy=dummy"/>
-        </antcall>
-        <antcall inheritall="true" inheritrefs="true" target="api.test.pseudotarget">
-            <param name="extension" value="-security.txt"/>
-            <param name="message" value="Running with security manager"/>
-            <param name="test.jvmargs" value="-Djava.security.manager=org.jboss.remoting.test.support.LoggingSecurityManager -Djava.security.policy=${basedir}/testing-support/src/main/resources/testing.policy"/>
-        </antcall>
-    </target>
-
-    <target name="api.clean">
-        <delete dir="api/target"/>
-    </target>
-
-    <target name="api" description="Build the API module" depends="lib.marshalling-api,lib.xnio-api,api.compile">
-        <path id="api.classpath">
-            <pathelement location="api/target/main/classes"/>
-            <path refid="lib.xnio-api.classpath"/>
-            <path refid="lib.marshalling-api.classpath"/>
-        </path>
-        <java classpathref="api.classpath" classname="org.jboss.remoting.Version" outputproperty="version"/>
-        <property name="version" value="UNKNOWN"/>
-    </target>
-
-    <!-- samples module -->
-
-    <target name="samples.compile.depcheck">
-        <mkdir dir="samples/target/main"/>
-        <uptodate property="samples.compile.uptodate" targetfile="samples/target/main/.lastcompile">
-            <srcfiles dir="samples/src/main/java">
-                <include name="**/"/>
-                <include name="**/*.java"/>
-                <exclude name="**/.*"/>
-            </srcfiles>
-        </uptodate>
-    </target>
-
-    <target name="samples.compile" depends="samples.compile.depcheck" unless="samples.compile.uptodate">
-        <mkdir dir="samples/target/main/classes"/>
-        <javac
-                source="${javac.source}"
-                target="${javac.target}"
-                srcdir="samples/src/main/java"
-                destdir="samples/target/main/classes"
-                debug="true">
-            <compilerarg value="-Xlint:unchecked"/>
-            <classpath>
-                <path refid="api.classpath"/>
-                <path refid="lib.remoting3-multiplex.classpath"/>
-                <path refid="lib.river.classpath"/>
-            </classpath>
-        </javac>
-        <touch file="samples/target/main/.lastcompile" verbose="false"/>
-    </target>
-
-    <target name="samples.clean">
-        <delete dir="samples/target"/>
-    </target>
-
-    <target name="samples" description="Build the samples module" depends="lib.marshalling-api,lib.remoting3-multiplex,lib.river,api,samples.compile">
-        <path id="samples.classpath">
-            <pathelement location="samples/target/main/classes"/>
-        </path>
-    </target>
-
-    <!-- testing-support module -->
-
-    <target name="testing-support.compile.depcheck">
-        <mkdir dir="testing-support/target/main"/>
-        <uptodate property="testing-support.compile.uptodate" targetfile="testing-support/target/main/.lastcompile">
-            <srcfiles dir="testing-support/src/main/java">
-                <include name="**/"/>
-                <include name="**/*.java"/>
-                <exclude name="**/.*"/>
-            </srcfiles>
-        </uptodate>
-    </target>
-
-    <target name="testing-support.compile" depends="testing-support.compile.depcheck" unless="testing-support.compile.uptodate">
-        <mkdir dir="testing-support/target/main/classes"/>
-        <javac
-                source="${javac.source}"
-                target="${javac.target}"
-                srcdir="testing-support/src/main/java"
-                destdir="testing-support/target/main/classes"
-                debug="true">
-            <compilerarg value="-Xlint:unchecked"/>
-            <classpath>
-                <path refid="lib.junit.classpath"/>
-                <path refid="lib.xnio-api.classpath"/>
-            </classpath>
-        </javac>
-        <touch file="testing-support/target/main/.lastcompile" verbose="false"/>
-    </target>
-
-    <target name="testing-support.clean">
-        <delete dir="testing-support/target"/>
-    </target>
-
-    <target name="testing-support" description="Build the testing-support module" depends="lib.junit,lib.xnio-api,testing-support.compile">
-        <path id="testing-support.classpath">
-            <pathelement location="testing-support/target/main/classes"/>
-        </path>
-    </target>
-
-    <!-- ============================================== -->
-    <!-- JARS - Keep in alpha order by jar name         -->
-    <!-- ============================================== -->
-
-    <target name="api-jar" description="Build the API JAR" depends="api">
-        <delete file="jboss-remoting.jar"/>
-        <jar jarfile="jboss-remoting.jar">
-            <manifest>
-                <attribute name="Created-By" value="${java.vm.version} (${java.vm.vendor})"/>
-                <attribute name="Specification-Title" value="JBoss Remoting"/>
-                <attribute name="Specification-Version" value="${version}"/>
-                <attribute name="Specification-Vendor" value="JBoss (http://www.jboss.org/)"/>
-                <attribute name="Implementation-Title" value="JBoss Remoting (API)"/>
-                <attribute name="Implementation-URL" value="http://labs.jboss.org/jbossremoting/"/>
-                <attribute name="Implementation-Version" value="${version}"/>
-                <attribute name="Implementation-Vendor" value="JBoss, a division of Red Hat, Inc."/>
-                <attribute name="Implementation-Vendor-Id" value="http://www.jboss.org"/>
-            </manifest>
-            <zipfileset dir="api/target/main/classes">
-                <include name="**/*.class"/>
-            </zipfileset>
-        </jar>
-    </target>
-
-    <target name="api-source-jar" description="Build the API source JAR" depends="api">
-        <delete file="jboss-remoting-source.jar"/>
-        <jar jarfile="jboss-remoting-source.jar">
-            <manifest>
-                <attribute name="Created-By" value="${java.vm.version} (${java.vm.vendor})"/>
-                <attribute name="Specification-Title" value="JBoss Remoting Source"/>
-                <attribute name="Specification-Version" value="${version}"/>
-                <attribute name="Specification-Vendor" value="JBoss (http://www.jboss.org/)"/>
-                <attribute name="Implementation-Title" value="JBoss Remoting Source (API)"/>
-                <attribute name="Implementation-URL" value="http://labs.jboss.org/jbossremoting/"/>
-                <attribute name="Implementation-Version" value="${version}"/>
-                <attribute name="Implementation-Vendor" value="JBoss, a division of Red Hat, Inc."/>
-                <attribute name="Implementation-Vendor-Id" value="http://www.jboss.org"/>
-            </manifest>
-            <zipfileset dir="api/src/main/java">
-                <include name="**/*.java"/>
-            </zipfileset>
-        </jar>
-    </target>
-
-    <!-- ============================================== -->
-    <!-- JAVADOCS                                       -->
-    <!-- ============================================== -->
-
-    <target name="api-javadoc" description="Build the API JavaDoc" depends="api,lib.apiviz,lib.marshalling-api,lib.xnio-api">
-        <delete dir="api/target/main/docs"/>
-        <mkdir dir="api/target/main/docs"/>
-        <javadoc destdir="api/target/main/docs" author="false" version="false" use="false" windowtitle="JBoss Remoting API">
-            <doclet name="${lib.apiviz.doclet}" pathref="lib.apiviz.classpath"/>
-            <packageset dir="api/src/main/java"/>
-            <doctitle><![CDATA[<h1>JBoss Remoting, version ${version}</h1>]]></doctitle>
-            <header><![CDATA[JBoss Remoting ${version}]]></header>
-            <footer><![CDATA[JBoss Remoting ${version}]]></footer>
-            <bottom><![CDATA[<i>Copyright &#169; 2008 JBoss, a division of Red Hat, Inc.</i>]]></bottom>
-            <link href="http://java.sun.com/j2se/1.5.0/docs/api/"/>
-            <link href="http://docs.jboss.org/xnio/1.2.0.GA/api/"/>
-            <link href="http://docs.jboss.org/river/1.0.0.GA/api/"/>
-            <classpath>
-                <path refid="api.classpath"/>
-            </classpath>
-        </javadoc>
-    </target>
-
-    <target name="api-javadoc-zip" description="Build the API JavaDoc ZIP" depends="api-javadoc">
-        <delete file="jboss-remoting-javadoc.zip"/>
-        <zip zipfile="jboss-remoting-javadoc.zip">
-            <zipfileset dir="api/target/main/docs" prefix="api">
-                <include name="**/*.html"/>
-                <include name="**/*.gif"/>
-                <include name="**/*.png"/>
-                <include name="**/package-list"/>
-            </zipfileset>
-        </zip>
-    </target>
-
-    <!-- ============================================== -->
-    <!-- Distribution target                            -->
-    <!-- ============================================== -->
-
-    <target name="dist" description="Build distribution zip file" depends="api-jar,api-source-jar,api-javadoc-zip">
-        <delete file="jboss-remoting.zip"/>
-        <zip zipfile="jboss-remoting.zip">
-            <zipfileset dir="${basedir}">
-                <include name="COPYING.txt"/>
-                <include name="jboss-remoting-api.jar"/>
-                <include name="jboss-remoting-api-source.jar"/>
-                <include name="jboss-remoting-javadoc.zip"/>
-            </zipfileset>
-        </zip>
-    </target>
-
-    <!-- Default targets - keep depends in alpha order by category name -->
-    <!-- These targets should explicitly list all modules, even if they will be built by other modules -->
-
-    <!-- core -->
-
-    <!--<target name="all-core" description="Build all core targets" depends="api,core,samples,testing-support"/>-->
-    <target name="all-core" description="Build all core targets" depends="api,testing-support"/>
-
-    <!-- JARs: These should be the second-to-last targets in the file -->
-
-    <target name="all-jars" description="Build all the JARs" depends="api-jar"/>
-
-    <!-- all: These should be the last targets in the file -->
-
-    <target name="all" description="Build everything" depends="all-core,all-jars,api-javadoc"/>
-
-    <target name="clean" description="Clean out all build files" depends="api.clean,samples.clean,testing-support.clean"/>
-
-    <target name="test" description="Run all tests" depends="api.test"/>
-
-</project>

Added: remoting3/trunk/pom.xml
===================================================================
--- remoting3/trunk/pom.xml	                        (rev 0)
+++ remoting3/trunk/pom.xml	2009-02-26 19:52:05 UTC (rev 4857)
@@ -0,0 +1,14 @@
+<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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.jboss.remoting</groupId>
+    <artifactId>jboss-remoting-all</artifactId>
+    <packaging>pom</packaging>
+    <version>1.1.0.CR1</version>
+    <modules>
+        <module>api</module>
+    </modules>
+</project>

Modified: remoting3/trunk/samples/src/test/java/org/jboss/remoting/samples/protocol/basic/BasicTestCase.java
===================================================================
--- remoting3/trunk/samples/src/test/java/org/jboss/remoting/samples/protocol/basic/BasicTestCase.java	2009-02-26 18:46:32 UTC (rev 4856)
+++ remoting3/trunk/samples/src/test/java/org/jboss/remoting/samples/protocol/basic/BasicTestCase.java	2009-02-26 19:52:05 UTC (rev 4857)
@@ -36,7 +36,6 @@
 import org.jboss.remoting.RequestContext;
 import org.jboss.remoting.RemoteExecutionException;
 import org.jboss.remoting.Client;
-import org.jboss.remoting.test.support.LoggingHelper;
 import org.jboss.remoting.spi.RequestHandler;
 import org.jboss.remoting.spi.Handle;
 import org.jboss.marshalling.MarshallingConfiguration;
@@ -51,9 +50,6 @@
  *
  */
 public final class BasicTestCase extends TestCase {
-    static {
-        LoggingHelper.init();
-    }
 
     public static void testConnect() throws Throwable {
         ExecutorService executor = new ThreadPoolExecutor(10, 10, 0L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>());




More information about the jboss-remoting-commits mailing list