You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2005/06/28 07:45:17 UTC

svn commit: r202134 - /forrest/trunk/main/build.xml

Author: crossley
Date: Mon Jun 27 22:45:16 2005
New Revision: 202134

URL: http://svn.apache.org/viewcvs?rev=202134&view=rev
Log:
Make "test" target depend on the "validate-config" target.
This checks fresh-site skinconf.xml and all xslt stylesheets.
Issue: FOR-542

Modified:
    forrest/trunk/main/build.xml

Modified: forrest/trunk/main/build.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/build.xml?rev=202134&r1=202133&r2=202134&view=diff
==============================================================================
--- forrest/trunk/main/build.xml (original)
+++ forrest/trunk/main/build.xml Mon Jun 27 22:45:16 2005
@@ -158,7 +158,6 @@
       </classpath>
     </taskdef>
     <!-- skinconf.xml -->
-    <!-- FIXME: do we need to validate skinconf.xml to build forrest? -->
     <echo message="validating **/skinconf.xml ..."/>
     <xmlvalidate failonerror="true" lenient="no" warn="yes">
       <xmlcatalog id="xcat">
@@ -281,7 +280,7 @@
   <!--        Test targets                -->
   <!-- ================================== -->
   <target name="test" 
-          depends="testseed, testPlugins" 
+          depends="validate-config, testseed, testPlugins" 
           description="Test that the features are okay before committing."/>
   
   <target name="testPlugins"