57 lines
1.7 KiB
XML
57 lines
1.7 KiB
XML
<project name="ethereumj-postpackage" default="run" basedir=".">
|
|
|
|
<description>
|
|
Build file to package the EthereumJ client and dependencies into a zip-file
|
|
</description>
|
|
<!-- set global properties for this build -->
|
|
<property name="src" location="src"/>
|
|
<property name="build" location="build"/>
|
|
<property name="dist" location="dist" />
|
|
|
|
|
|
<target name="init">
|
|
<!-- Create the time stamp -->
|
|
<tstamp/>
|
|
|
|
<echo message="Ant is taking control [assembly the package]"> </echo>
|
|
<echo message="${maven.project.artifactId}"> </echo>
|
|
<echo message="${maven.project.version}"> </echo>
|
|
|
|
</target>
|
|
|
|
<target name="make-package">
|
|
|
|
<mkdir dir="./target/package"/>
|
|
<copy todir="./target/package/ethereumj/lib">
|
|
<fileset dir="./target/dependency"/>
|
|
</copy>
|
|
|
|
<copy file="./target/${maven.project.artifactId}-${maven.project.version}.jar"
|
|
tofile="./target/package/ethereumj/${maven.project.artifactId}.jar"/>
|
|
|
|
<copy todir="./target/package/ethereumj/">
|
|
<fileset dir="./target/classes/config"/>
|
|
</copy>
|
|
|
|
<copy file="./target/classes/log4j.properties" todir="./target/package/ethereumj/config"/>
|
|
<copy file="./target/classes/system.properties" todir="./target/package/ethereumj/config"/>
|
|
<copy file="./target/classes/GeoLiteCity.dat" todir="./target/package/ethereumj/config"/>
|
|
|
|
<copy todir="./target/package/ethereumj/samples">
|
|
<fileset dir="./samples"/>
|
|
</copy>
|
|
|
|
|
|
|
|
<zip destfile="ethereumj-${DSTAMP}-${TSTAMP}.zip" basedir="./target/package">
|
|
</zip>
|
|
|
|
|
|
</target>
|
|
|
|
<target name="run" depends="init, make-package"></target>
|
|
|
|
|
|
|
|
</project>
|