[jboss-remoting-commits] JBoss Remoting SVN: r5785 - remoting-mc-int/trunk.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Tue Mar 2 16:46:23 EST 2010


Author: david.lloyd at jboss.com
Date: 2010-03-02 16:46:23 -0500 (Tue, 02 Mar 2010)
New Revision: 5785

Removed:
   remoting-mc-int/trunk/build.properties
   remoting-mc-int/trunk/build.xml
Log:
No longer used

Deleted: remoting-mc-int/trunk/build.properties
===================================================================
--- remoting-mc-int/trunk/build.properties	2010-03-02 21:45:22 UTC (rev 5784)
+++ remoting-mc-int/trunk/build.properties	2010-03-02 21:46:23 UTC (rev 5785)
@@ -1,4 +0,0 @@
-javac.source=1.5
-javac.target=1.5
-
-lib.apiviz.doclet=net.gleamynode.apiviz.APIviz

Deleted: remoting-mc-int/trunk/build.xml
===================================================================
--- remoting-mc-int/trunk/build.xml	2010-03-02 21:45:22 UTC (rev 5784)
+++ remoting-mc-int/trunk/build.xml	2010-03-02 21:46:23 UTC (rev 5785)
@@ -1,126 +0,0 @@
-<project name="JBoss Remoting 3 Microcontainer Integration" 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: JAXB API -->
-
-    <target name="lib.jaxb-api" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.jaxb-api.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="sun-jaxb" artifactId="jaxb-api" version="2.1.9"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- External library: JBoss Microcontainer kernel -->
-
-    <target name="lib.jbossmc-kernel" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.jbossmc-kernel.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.microcontainer" artifactId="jboss-kernel" version="2.0.1.GA"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- External library: JBossXB -->
-
-    <target name="lib.jbossxb" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.jbossxb.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss" artifactId="jbossxb" version="2.0.0.GA"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- External library: Remoting API -->
-
-    <target name="lib.remoting-api" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.remoting-api.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.remoting3" artifactId="remoting-api" version="3.0.0.GA"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- External library: Remoting Core -->
-
-    <target name="lib.remoting-core" depends="jboss.repository">
-        <mvn:dependencies pathId="lib.remoting-core.classpath">
-            <mvn:remoteRepository refid="jboss.repository"/>
-            <mvn:dependency groupId="org.jboss.remoting3" artifactId="remoting-core" version="3.0.0.GA"/>
-        </mvn:dependencies>
-    </target>
-
-    <!-- ============================================== -->
-    <!-- MODULES - Keep in alpha order by target name   -->
-    <!-- ============================================== -->
-
-    <!-- ======== metadata module ======== -->
-
-    <!-- main -->
-
-    <target name="metadata.main.compile.depcheck">
-        <mkdir dir="metadata/target/main"/>
-        <uptodate property="metadata.main.compile.uptodate" targetfile="metadata/target/main/.lastcompile">
-            <srcfiles dir="metadata/src/main/java">
-                <include name="**/"/>
-                <include name="**/*.java"/>
-                <exclude name="**/.*"/>
-            </srcfiles>
-        </uptodate>
-    </target>
-
-    <target name="metadata.main.compile" depends="lib.jaxb-api,lib.jbossmc-kernel,lib.jbossxb,lib.remoting-api,metadata.main.compile.depcheck" unless="metadata.main.compile.uptodate">
-        <mkdir dir="metadata/target/main/classes"/>
-        <javac
-                source="${javac.source}"
-                target="${javac.target}"
-                srcdir="metadata/src/main/java"
-                destdir="metadata/target/main/classes"
-                debug="true">
-            <compilerarg value="-Xlint:unchecked"/>
-            <classpath>
-            </classpath>
-        </javac>
-        <touch file="metadata/target/main/.lastcompile" verbose="false"/>
-    </target>
-
-    <target name="metadata.main" depends="metadata.main.compile">
-        <path id="metadata.main.classpath">
-            <pathelement location="metadata/target/main/classes"/>
-        </path>
-    </target>
-
-    <!-- general -->
-
-    <target name="metadata.clean">
-        <delete dir="metadata/target"/>
-    </target>
-
-    <target name="metadata" description="Build the metadata module" depends="metadata.main"/>
-
-</project>
-



More information about the jboss-remoting-commits mailing list