[jboss-svn-commits] JBL Code SVN: r28098 - labs/jbosstm/trunk/ArjunaJTS/orbportability.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jul 16 09:42:49 EDT 2009


Author: jhalliday
Date: 2009-07-16 09:42:48 -0400 (Thu, 16 Jul 2009)
New Revision: 28098

Modified:
   labs/jbosstm/trunk/ArjunaJTS/orbportability/build.xml
Log:
Fix file locking issue with windows build. JBTM-574


Modified: labs/jbosstm/trunk/ArjunaJTS/orbportability/build.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/orbportability/build.xml	2009-07-16 13:09:22 UTC (rev 28097)
+++ labs/jbosstm/trunk/ArjunaJTS/orbportability/build.xml	2009-07-16 13:42:48 UTC (rev 28098)
@@ -31,9 +31,11 @@
     </target>
 
     <target name="taskdefs">
-        <taskdef name="idl-compiler" classname="com.arjuna.orbportability.common.ant.IDLCompiler" classpath="${build.dir}/lib/orbportability.jar;config"/>
-        <taskdef name="idl-build-list" classname="com.arjuna.orbportability.common.ant.IDLBuildList" classpath="${build.dir}/lib/orbportability.jar"/>
-        <taskdef name="idl-build-list-element" classname="com.arjuna.orbportability.common.ant.IDLBuildListElement" classpath="${build.dir}/lib/orbportability.jar"/>
+        <!-- Note these classpaths use the classes dir not the orbportability.jar due to a file locking issue
+            that may cause generateresourcebundle to fail on windows machines. -->
+        <taskdef name="idl-compiler" classname="com.arjuna.orbportability.common.ant.IDLCompiler" classpath="${build.dir}/classes;config"/>
+        <taskdef name="idl-build-list" classname="com.arjuna.orbportability.common.ant.IDLBuildList" classpath="${build.dir}/classes"/>
+        <taskdef name="idl-build-list-element" classname="com.arjuna.orbportability.common.ant.IDLBuildListElement" classpath="${build.dir}/classes"/>
     </target>
 
     <target name="compile" depends="init">



More information about the jboss-svn-commits mailing list