|
From: <tre...@us...> - 2007-08-09 12:46:32
|
Revision: 241
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=241&view=rev
Author: trevorolio
Date: 2007-08-09 05:45:17 -0700 (Thu, 09 Aug 2007)
Log Message:
-----------
Put classpath back into build.xml.
Modified Paths:
--------------
spaces/trunk/build.xml
Modified: spaces/trunk/build.xml
===================================================================
--- spaces/trunk/build.xml 2007-08-09 03:40:59 UTC (rev 240)
+++ spaces/trunk/build.xml 2007-08-09 12:45:17 UTC (rev 241)
@@ -24,6 +24,21 @@
</delete>
</target>
+ <path id="classpath">
+ <fileset dir="${webLibDir}">
+ <include name="**/*.jar" />
+ </fileset>
+ <fileset dir="shared-lib">
+ <include name="**/*.jar" />
+ </fileset>
+ <fileset dir="${tomcatHome}/common/lib/">
+ <include name="**/*.jar" />
+ </fileset>
+ <fileset dir="${java.home}/lib/">
+ <include name="plugin.jar" />
+ </fileset>
+ </path>
+
<target name="compile">
<javac source="1.4" target="1.4" srcdir="${source}" destdir="${dest}" debug="${debug.on}">
<classpath refid="classpath" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|