You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2007/09/26 16:26:39 UTC

svn commit: r579665 - /incubator/abdera/java/trunk/build/build.xml

Author: jmsnell
Date: Wed Sep 26 07:26:39 2007
New Revision: 579665

URL: http://svn.apache.org/viewvc?rev=579665&view=rev
Log:
Fixing the ant build as reported by David Calavera and Garrett

Modified:
    incubator/abdera/java/trunk/build/build.xml

Modified: incubator/abdera/java/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/build/build.xml?rev=579665&r1=579664&r2=579665&view=diff
==============================================================================
--- incubator/abdera/java/trunk/build/build.xml (original)
+++ incubator/abdera/java/trunk/build/build.xml Wed Sep 26 07:26:39 2007
@@ -526,7 +526,7 @@
         <exclude name="**/*.md5" />
         <exclude name="**/.project" />
         <exclude name="**/feedvalidator.org/**/*" />
-        <exclude name="**/json/src/**/*" />
+        <exclude name="dependencies/json/src/**/*" />
         <exclude name="dependencies/work/**/*" />
       </fileset>
     </copy>
@@ -705,7 +705,7 @@
     <echo>Compiling extension ${ext}...</echo>
     <mkdir dir="${extensions.work}/${ext}" />
     <mkdir dir="${extensions.work}/${ext}/META-INF" />
-    <javac srcdir="${extensions}/${ext}/src/main/java" destdir="${extensions.work}/${ext}" classpathref="jar.dependencies" classpath="${core.work};${parser.work};${client.work};${protocol.work}" debug="${debug}" />
+    <javac srcdir="${extensions}/${ext}/src/main/java" destdir="${extensions.work}/${ext}" classpathref="jar.dependencies" classpath="${core.work};${parser.work};${client.work};${protocol.work};${extensions.work}/main" debug="${debug}" />
 
     <available file="${extensions}/${ext}/src/test/java" property="is.available.${ext}.test" />