Changeset 1397 for trunk/build.xml

Show
Ignore:
Timestamp:
03/03/08 21:19:47 (7 months ago)
Author:
mikey
Message:

enhancement #49: added a new task that executes a configured list of net::stubbles::lang::stubInitializer instances
Todo: rewort starwriter task to be compatible with stubInitClassLoader task in order to enable the new test-initializers target in the stubbles build file
Todo: test new test-initializers target in release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.xml

    r1316 r1397  
    6363    </if> 
    6464  </target> 
    65    
     65 
     66  <target name="test-initializers" description="run initializers"> 
     67    <if> 
     68      <isset property="package" /> 
     69      <then> 
     70        <phing phingfile="${build.base.dir}/${package}/build.xml" target="test-initializers" /> 
     71      </then> 
     72      <else> 
     73        <phing phingfile="${build.base.dir}/stubbles/build.xml" target="test-initializers" /> 
     74      </else> 
     75    </if> 
     76  </target> 
     77 
    6678  <target name="check-style" description="check coding standards"> 
    6779    <phing phingfile="${build.base.dir}/stubbles/build.xml" target="check-style" />