[jboss-svn-commits] JBossWS SVN: r1144 - in branches/tdiesler/jbossws-1.0: . src/ant

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Oct 5 08:24:47 EDT 2006


Author: thomas.diesler at jboss.com
Date: 2006-10-05 08:24:43 -0400 (Thu, 05 Oct 2006)
New Revision: 1144

Modified:
   branches/tdiesler/jbossws-1.0/.classpath
   branches/tdiesler/jbossws-1.0/src/ant/build-thirdparty.xml
   branches/tdiesler/jbossws-1.0/version.properties
Log:
Pull jboss jars from repository

Modified: branches/tdiesler/jbossws-1.0/.classpath
===================================================================
--- branches/tdiesler/jbossws-1.0/.classpath	2006-10-05 11:31:42 UTC (rev 1143)
+++ branches/tdiesler/jbossws-1.0/.classpath	2006-10-05 12:24:43 UTC (rev 1144)
@@ -27,5 +27,10 @@
 	<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jboss-4.0.x"/>
 	<classpathentry sourcepath="D:/cvs/jboss-branch/jboss-4.0.x/common/src/main" kind="lib" path="thirdparty/jboss-common.jar"/>
 	<classpathentry kind="lib" path="thirdparty/ant.jar"/>
+	<classpathentry kind="lib" path="thirdparty/jboss.jar"/>
+	<classpathentry kind="lib" path="thirdparty/jboss-j2ee.jar"/>
+	<classpathentry kind="lib" path="thirdparty/jboss-jmx.jar"/>
+	<classpathentry kind="lib" path="thirdparty/jbosssx.jar"/>
+	<classpathentry kind="lib" path="thirdparty/jboss-system.jar"/>
 	<classpathentry kind="output" path="output-eclipse"/>
 </classpath>

Modified: branches/tdiesler/jbossws-1.0/src/ant/build-thirdparty.xml
===================================================================
--- branches/tdiesler/jbossws-1.0/src/ant/build-thirdparty.xml	2006-10-05 11:31:42 UTC (rev 1143)
+++ branches/tdiesler/jbossws-1.0/src/ant/build-thirdparty.xml	2006-10-05 12:24:43 UTC (rev 1144)
@@ -33,6 +33,11 @@
     <get src="${jboss.repository}/apache-xmlsec/${apache-xmlsec}/lib/xmlsec.jar" dest="${thirdparty.dir}/xmlsec.jar" usetimestamp="true" verbose="true"/>
     <get src="${jboss.repository}/ibm-wsdl4j/${ibm-wsdl4j}/lib/wsdl4j.jar" dest="${thirdparty.dir}/wsdl4j.jar" usetimestamp="true" verbose="true"/>
     <get src="${jboss.repository}/javassist/${javassist}/lib/javassist.jar" dest="${thirdparty.dir}/javassist.jar" usetimestamp="true" verbose="true"/>
+    <get src="${jboss.repository}/jbossas/core-libs/${jbossas}/lib/jboss.jar" dest="${thirdparty.dir}/jboss.jar" usetimestamp="true" verbose="true"/>
+    <get src="${jboss.repository}/jbossas/core-libs/${jbossas}/lib/jbosssx.jar" dest="${thirdparty.dir}/jbosssx.jar" usetimestamp="true" verbose="true"/>
+    <get src="${jboss.repository}/jbossas/core-libs/${jbossas}/lib/jboss-j2ee.jar" dest="${thirdparty.dir}/jboss-j2ee.jar" usetimestamp="true" verbose="true"/>
+    <get src="${jboss.repository}/jbossas/core-libs/${jbossas}/lib/jboss-jmx.jar" dest="${thirdparty.dir}/jboss-jmx.jar" usetimestamp="true" verbose="true"/>
+    <get src="${jboss.repository}/jbossas/core-libs/${jbossas}/lib/jboss-system.jar" dest="${thirdparty.dir}/jboss-system.jar" usetimestamp="true" verbose="true"/>
     <get src="${jboss.repository}/jboss/backport-concurrent/${jboss-backport-concurrent}/lib/jboss-backport-concurrent.jar" dest="${thirdparty.dir}/jboss-backport-concurrent.jar" usetimestamp="true" verbose="true"/>
     <get src="${jboss.repository}/jboss/common/${jboss-common}/lib/jboss-common.jar" dest="${thirdparty.dir}/jboss-common.jar" usetimestamp="true" verbose="true"/>
     <get src="${jboss.repository}/jboss/microcontainer/${jboss-microcontainer}/lib/jboss-container.jar" dest="${thirdparty.dir}/jboss-container.jar" usetimestamp="true" verbose="true"/>
@@ -84,16 +89,16 @@
 
     <!-- The classpath for the jbossws core -->
     <path id="jboss.core.classpath">
-      <pathelement location="${jboss.server.lib}/jboss-j2ee.jar"/>
+      <pathelement location="${thirdparty.dir}/jboss-j2ee.jar"/>
       <pathelement location="${jboss.server.deploy}/ejb3.deployer/jboss-annotations-ejb3.jar"/>
     </path>
 
     <!-- The classpath for the jboss integration -->
     <path id="jboss.integration.classpath">
-      <pathelement location="${jboss.lib}/jboss-jmx.jar"/>
-      <pathelement location="${jboss.lib}/jboss-system.jar"/>
-      <pathelement location="${jboss.server.lib}/jboss.jar"/>
-      <pathelement location="${jboss.server.lib}/jbosssx.jar"/>
+      <pathelement location="${thirdparty.dir}/jboss.jar"/>
+      <pathelement location="${thirdparty.dir}/jbosssx.jar"/>
+      <pathelement location="${thirdparty.dir}/jboss-jmx.jar"/>
+      <pathelement location="${thirdparty.dir}/jboss-system.jar"/>
       <pathelement location="${jboss.server.deploy}/jboss-aop-jdk50.deployer/jboss-aop-jdk50.jar"/>
       <pathelement location="${jboss.server.deploy}/jboss-aop-jdk50.deployer/jboss-aspect-library-jdk50.jar"/>
       <pathelement location="${jboss.server.deploy}/ejb3.deployer/jboss-annotations-ejb3.jar"/>

Modified: branches/tdiesler/jbossws-1.0/version.properties
===================================================================
--- branches/tdiesler/jbossws-1.0/version.properties	2006-10-05 11:31:42 UTC (rev 1143)
+++ branches/tdiesler/jbossws-1.0/version.properties	2006-10-05 12:24:43 UTC (rev 1144)
@@ -27,7 +27,7 @@
 apache-xerces=2.7.1
 jboss-backport-concurrent=2.1.0.GA
 jboss-jbossretro=1.0.2.GA
-jbossas-core=4.0.4.GA
+jbossas=4.0.4.GA
 junit=3.8.1
 oswego-concurrent=1.3.4
 qdox=1.4




More information about the jboss-svn-commits mailing list