mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 09:50:32 +01:00
c3f5496a8e
Remove the timestamp from the generated JavaDoc output to minimize subversion diffs in future. Make the broadcastTransaction method of Peer package private. It's no longer needed to send coins.
46 lines
1.2 KiB
XML
46 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="bitcoinj" default="all">
|
|
<target name="init">
|
|
<tstamp/>
|
|
<mkdir dir="out"/>
|
|
<mkdir dir="docs"/>
|
|
</target>
|
|
|
|
<target name="compile" depends="init">
|
|
<javac destdir="out" includeantruntime="no">
|
|
<src path="src"/>
|
|
<src path="tests"/>
|
|
<classpath path="lib/junit-4.8.2.jar"/>
|
|
</javac>
|
|
</target>
|
|
|
|
<target name="docs" depends="init">
|
|
<javadoc sourcepath="src"
|
|
excludepackagenames="com.google.bitcoin.bouncycastle.*"
|
|
destdir="docs"
|
|
additionalparam="-notimestamp"/>
|
|
</target>
|
|
|
|
<target name="test" depends="compile">
|
|
<junit showoutput="false">
|
|
<classpath path="lib/junit-4.8.2.jar:out"/>
|
|
<batchtest>
|
|
<fileset dir="tests"><include name="**/*.java"/></fileset>
|
|
<formatter type="brief" usefile="no"/>
|
|
</batchtest>
|
|
</junit>
|
|
</target>
|
|
|
|
<target name="dist" depends="compile">
|
|
<mkdir dir="dist"/>
|
|
<jar jarfile="dist/bitcoinj-${DSTAMP}.jar" basedir="out"/>
|
|
</target>
|
|
|
|
<target name="all" depends="dist,docs,test"/>
|
|
|
|
<target name="clean">
|
|
<delete dir="out"/>
|
|
<delete dir="dist"/>
|
|
<delete dir="docs"/>
|
|
</target>
|
|
</project> |