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/04 00:08:39 UTC

svn commit: r572435 - /incubator/abdera/java/branches/0.3.0-incubating/build/build.xml

Author: jmsnell
Date: Mon Sep  3 15:08:38 2007
New Revision: 572435

URL: http://svn.apache.org/viewvc?rev=572435&view=rev
Log:
Fix the spring build so that the resources are properly included (per the report from Ugo)

Modified:
    incubator/abdera/java/branches/0.3.0-incubating/build/build.xml

Modified: incubator/abdera/java/branches/0.3.0-incubating/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/branches/0.3.0-incubating/build/build.xml?rev=572435&r1=572434&r2=572435&view=diff
==============================================================================
--- incubator/abdera/java/branches/0.3.0-incubating/build/build.xml (original)
+++ incubator/abdera/java/branches/0.3.0-incubating/build/build.xml Mon Sep  3 15:08:38 2007
@@ -302,6 +302,9 @@
     <javac srcdir="${spring.src}" destdir="${spring.work}" classpathref="spring.dependencies" classpath="${core.work};${protocol.work};${server.work}" debug="${debug}" />
     <javac srcdir="${spring.test.src}" destdir="${test}" classpathref="spring.dependencies" classpath="${core.work};${parser.work};${spring.work};${protocol.work};${server.work}" debug="${debug}" />
     <mkdir dir="${spring.work}/META-INF" />
+    <copy todir="${spring.work}">
+      <fileset dir="${spring.resources}" includes="**/*" />
+    </copy>
     <copy todir="${test}">
       <fileset dir="${spring.test.resources}" includes="**/*" />
     </copy>