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 01:44:04 UTC

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

Author: jmsnell
Date: Mon Sep  3 16:44:03 2007
New Revision: 572453

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

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=572453&r1=572452&r2=572453&view=diff
==============================================================================
--- incubator/abdera/java/trunk/build/build.xml (original)
+++ incubator/abdera/java/trunk/build/build.xml Mon Sep  3 16:44:03 2007
@@ -308,6 +308,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>