blob: c6a98467ccbc55d4ed38b29195bb1eb8a6769eba [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
<project default="jar"
xmlns:j="jelly:core"
xmlns:u="jelly:util"
xmlns:maven="jelly:maven"
xmlns:deploy="deploy"
xmlns:ant="jelly:ant">
<postGoal name="test:compile">
<mkdir dir="target/classes/META-INF"/>
<copy file="src/META-INF/module.xml"
tofile="target/classes/META-INF/module.xml"/>
<copy file="./test-resources/axis2.xml"
tofile="target/axis2.xml"/>
<mkdir dir="target/modules"/>
<jar jarfile="target/addressing.mar" basedir="target/classes">
<include name="**"/>
</jar>
<copy file="target/addressing.mar"
tofile="target/modules/addressing.mar"/>
</postGoal>
<preGoal name="itest:compile">
<u:file var="file" name="${maven.itest.src}"/>
<j:if test="${!file.exists()}">
<j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
</j:if>
</preGoal>
</project>