[jboss-cvs] JBoss Messaging SVN: r5393 - branches/Branch_1_4/docs/examples/topic.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Nov 20 03:08:48 EST 2008
Author: gaohoward
Date: 2008-11-20 03:08:47 -0500 (Thu, 20 Nov 2008)
New Revision: 5393
Modified:
branches/Branch_1_4/docs/examples/topic/build.xml
Log:
1.4.1.GA fix classpath problem
Modified: branches/Branch_1_4/docs/examples/topic/build.xml
===================================================================
--- branches/Branch_1_4/docs/examples/topic/build.xml 2008-11-20 00:41:52 UTC (rev 5392)
+++ branches/Branch_1_4/docs/examples/topic/build.xml 2008-11-20 08:08:47 UTC (rev 5393)
@@ -52,16 +52,16 @@
</target>
<target name="init" depends="sanity-check">
- <mkdir dir="./output" />
- <mkdir dir="../common/output" />
+ <mkdir dir="./output/classes" />
+ <mkdir dir="../common/output/classes" />
</target>
<target name="compile" depends="init">
- <javac destdir="../common/output" debug="on" debuglevel="lines,vars,source">
+ <javac destdir="../common/output/classes" debug="on" debuglevel="lines,vars,source">
<src path="../common/src" />
<classpath refid="common.compilation.classpath" />
</javac>
- <javac destdir="./output" debug="on" debuglevel="lines,vars,source">
+ <javac destdir="./output/classes" debug="on" debuglevel="lines,vars,source">
<src path="./src" />
<classpath refid="example.compilation.classpath" />
</javac>
More information about the jboss-cvs-commits
mailing list