You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2012/09/11 02:21:57 UTC

svn commit: r1383183 - /incubator/flex/falcon/trunk/compiler/.classpath

Author: gordonsmith
Date: Tue Sep 11 00:21:57 2012
New Revision: 1383183

URL: http://svn.apache.org/viewvc?rev=1383183&view=rev
Log:
The .classpath file for Falcon's Eclipse project now uses a "classpath variable" named ANT_JAR to put ant.jar on the project's classpath. This JAR is required by the Ant tasks <mxmlc> and <compc>.

You must set ANT_JAR in Window > Preferences > Java > Build Path > Classpath Variables to point to the ant.jar you are using. For example, on Windows you might set it to C:\ant1.7.0\lib\ant.jar if your Ant 1.7.0 lives at C:\ant1.7.0.

Modified:
    incubator/flex/falcon/trunk/compiler/.classpath

Modified: incubator/flex/falcon/trunk/compiler/.classpath
URL: http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/compiler/.classpath?rev=1383183&r1=1383182&r2=1383183&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/compiler/.classpath (original)
+++ incubator/flex/falcon/trunk/compiler/.classpath Tue Sep 11 00:21:57 2012
@@ -13,6 +13,6 @@
 	<classpathentry kind="lib" path="lib/guava.jar"/>
 	<classpathentry kind="lib" path="lib/lzma-sdk.jar"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="lib" path="lib/ant.jar"/>
+	<classpathentry kind="var" path="ANT_JAR"/>
 	<classpathentry kind="output" path="generated/intermediates/eclipse/bin"/>
 </classpath>