You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/01/14 10:16:37 UTC

svn commit: r1432847 - /commons/proper/logging/trunk/build.xml

Author: tn
Date: Mon Jan 14 09:16:37 2013
New Revision: 1432847

URL: http://svn.apache.org/viewvc?rev=1432847&view=rev
Log:
Fix build.xml with new location of sources/resources.

Modified:
    commons/proper/logging/trunk/build.xml

Modified: commons/proper/logging/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/build.xml?rev=1432847&r1=1432846&r2=1432847&view=diff
==============================================================================
--- commons/proper/logging/trunk/build.xml (original)
+++ commons/proper/logging/trunk/build.xml Mon Jan 14 09:16:37 2013
@@ -109,10 +109,13 @@
   <property name="artifacts.home"               value="artifacts"/>
 
   <!-- The base directory for component sources -->
-  <property name="source.home"             value="src/java"/>
+  <property name="source.home"             value="src/main/java"/>
 
   <!-- The base directory for unit test sources -->
-  <property name="test.home"               value="src/test"/>
+  <property name="test.home"               value="src/test/java"/>
+
+  <!-- The base directory for unit test resources -->
+  <property name="test.resources"          value="src/test/resources"/>
 
   <!-- jar names -->
   <property name="core.jar.name" value="commons-${component.name}-${component.version}.jar"/>
@@ -587,7 +590,7 @@
     <antcall target='compile.avalon.tests'/>
     <antcall target='compile.logkit.tests'/>
     <copy    todir="${build.home}/tests" filtering="on">
-      <fileset dir="${test.home}" excludes="**/*.java"/>
+      <fileset dir="${test.resources}" excludes="**/*.java"/>
     </copy>
     <jar jarfile="${build.home}/commons-${component.name}-appender.jar"
          basedir="${build.home}/tests"