<target
depends="wedsitor.dist"
description="Creates a zip of the WedSitor project, but before, creates its distribution "
name="wedsitor.zip"
>
<dirname
file="${WEDSITOR_JAR}"
property="WEDSITOR_JAR_DIRECTORY_PATH"
/>
<basename
file="${WEDSITOR_JAR}"
property="WEDSITOR_JAR_NAME"
/>
<zip destFile="WedSitor-${VERSION}.zip">
<fileset dir="${WEDSITOR_JAR_DIRECTORY_PATH}">
<include name="${WEDSITOR_JAR_NAME}"/>
</fileset>
<--fileset dir="${XSL_SOURCE_DIRECTORY_PATH}">
<include name="ConverterBNPToWedSitor.xsl"/>
<include name="ConverterEDToWedSitor.xsl"/>
</fileset-->
<fileset dir="${SOURCE_DIRECTORY_PATH}/test">
<include name="Login.php"/>
</fileset>
<fileset dir="../../BNP Paribas/intranet">
<include name="Portal.xml"/>
</fileset>
<fileset dir=".">
<include name="build.xml"/>
</fileset>
</zip>
</target>
|