From: <jbo...@li...> - 2006-05-26 14:39:49
|
Author: kev...@jb... Date: 2006-05-26 10:39:43 -0400 (Fri, 26 May 2006) New Revision: 4439 Modified: labs/jbosstm/trunk/ArjunaJTS/trailmap/build.xml labs/jbosstm/trunk/ArjunaJTS/trailmap/docs/part1.xml Log: Updated trailmap Modified: labs/jbosstm/trunk/ArjunaJTS/trailmap/build.xml =================================================================== --- labs/jbosstm/trunk/ArjunaJTS/trailmap/build.xml 2006-05-26 14:38:43 UTC (rev 4438) +++ labs/jbosstm/trunk/ArjunaJTS/trailmap/build.xml 2006-05-26 14:39:43 UTC (rev 4439) @@ -34,7 +34,7 @@ <project name="ArjunaTS_TrailMap" default="buildjar" basedir="."> <!-- Where the transaction has been installed to, this should not need changing by default --> - <property name="arjunahome" value=".."/> + <property name="jbosstshome" value=".."/> <!-- This source code directory for the trailmap --> <property name="src" value="src"/> @@ -46,10 +46,10 @@ <property name="lib" value="lib"/> <!-- The location of JacORB to use. This should not need changing unless a different version of JacORB is used --> - <property name="jacorb-home" value="${arjunahome}/jacorb_2_1"/> + <property name="jacorb-home" value="${jbosstshome}/jacorb"/> <!-- The location of the Arjuna IDL files used by the JTS --> - <property name="arjuna-include" value="${arjunahome}/idl"/> + <property name="jbossts-include" value="${jbosstshome}/idl"/> <!-- The include files required by JacORB --> <property name="jacorb-include" value="${jacorb-home}/idl/omg"/> @@ -60,7 +60,7 @@ ensure that the code has already been built. --> <target name="buildjar" depends="compile"> - <jar basedir="${build}" jarfile="${lib}/arjunats-demo.jar"/> + <jar basedir="${build}" jarfile="${lib}/jbossts-demo.jar"/> </target> @@ -71,8 +71,8 @@ <target name="compile" depends="idl"> <javac srcdir="${src}" destdir="${build}"> <classpath> - <fileset dir="${arjunahome}/lib" includes="*.jar"/> - <fileset dir="${arjunahome}/lib/ext" includes="*.jar"/> + <fileset dir="${jbosstshome}/lib" includes="*.jar"/> + <fileset dir="${jbosstshome}/lib/ext" includes="*.jar"/> <fileset dir="${jacorb-home}/lib" includes="*.jar"/> </classpath> </javac> @@ -90,7 +90,7 @@ <classpath> <fileset dir="${jacorb-home}/lib" includes="*.jar"/> </classpath> - <arg value="-I${arjuna-include}"/> + <arg value="-I${jbossts-include}"/> <arg value="-I${jacorb-include}"/> <arg line="-d ${src}/generated"/> <arg value="${src}/com/arjuna/demo/simple/Hello.idl"/> @@ -101,7 +101,7 @@ <classpath> <fileset dir="${jacorb-home}/lib" includes="*.jar"/> </classpath> - <arg value="-I${arjuna-include}"/> + <arg value="-I${jbossts-include}"/> <arg value="-I${jacorb-include}"/> <arg line="-d ${src}/generated"/> <arg value="${src}/com/arjuna/demo/jts/remotebank/Bank.idl"/> @@ -112,7 +112,7 @@ <classpath> <fileset dir="${jacorb-home}/lib" includes="*.jar"/> </classpath> - <arg value="-I${arjuna-include}"/> + <arg value="-I${jbossts-include}"/> <arg value="-I${jacorb-include}"/> <arg line="-d ${src}/generated"/> <arg value="${src}/com/arjuna/demo/jts/explicitremotebank/Bank.idl"/> @@ -123,7 +123,7 @@ <classpath> <fileset dir="${jacorb-home}/lib" includes="*.jar"/> </classpath> - <arg value="-I${arjuna-include}"/> + <arg value="-I${jbossts-include}"/> <arg value="-I${jacorb-include}"/> <arg line="-d ${src}/generated"/> <arg value="${src}/com/arjuna/demo/jts/txojbank/Bank.idl"/> Modified: labs/jbosstm/trunk/ArjunaJTS/trailmap/docs/part1.xml =================================================================== --- labs/jbosstm/trunk/ArjunaJTS/trailmap/docs/part1.xml 2006-05-26 14:38:43 UTC (rev 4438) +++ labs/jbosstm/trunk/ArjunaJTS/trailmap/docs/part1.xml 2006-05-26 14:39:43 UTC (rev 4439) @@ -61,7 +61,7 @@ to running any applications. </li> <li> - <font face="Courier New,Courier">/jacorb_2_1</font>: If the jacorb installation has been selected during the installation, this directory contains the jacorb distribution. + <font face="Courier New,Courier">/jacorb</font>: This directory contains the jacorb distribution. </li> <li> <font face="Courier New,Courier">/lib</font>: this directory contains the @@ -98,7 +98,7 @@ the directory <font face="Courier New, Courier, mono"><arjunats_install_root>/trail_map/lib</font> </li> <li>Add the generated jar file to the CLASSPATH environment variable.</li> - <li>Ensure that the jacorb (version 2.1) jar files are added in your CLASSPATH. <br/> + <li>Ensure that the jacorb (version 2.2.2) jar files are added in your CLASSPATH. <br/> <b>Ensure that ArjunaTS jar files appear before jacorb jar files. </b></li> </ul> <ul> |