mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 20:22:05 +01:00
Don't run tests on release.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2012 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
b2fa3c3a1f
commit
c05820b2ae
1 changed files with 8 additions and 3 deletions
|
@ -85,6 +85,7 @@
|
||||||
<!-- jar -->
|
<!-- jar -->
|
||||||
<!-- ======================================================================================= -->
|
<!-- ======================================================================================= -->
|
||||||
<target name="jar" depends="compile, test" unless="jar.uptodate" description="Produces smack.jar">
|
<target name="jar" depends="compile, test" unless="jar.uptodate" description="Produces smack.jar">
|
||||||
|
|
||||||
<jar destfile="${jar.dest.dir}/smack.jar"
|
<jar destfile="${jar.dest.dir}/smack.jar"
|
||||||
basedir="${compile.dir}"
|
basedir="${compile.dir}"
|
||||||
includes="org/jivesoftware/smack/**/*.class"
|
includes="org/jivesoftware/smack/**/*.class"
|
||||||
|
@ -175,9 +176,13 @@
|
||||||
|
|
||||||
<!-- release -->
|
<!-- release -->
|
||||||
<!-- ======================================================================================= -->
|
<!-- ======================================================================================= -->
|
||||||
<target name="release" if="release.exists" depends="release-exists, test">
|
<target name="release" if="release.exists" depends="release-exists">
|
||||||
<antcall target="jar" />
|
<antcall target="jar">
|
||||||
<antcall target="javadoc" />
|
<param name="no.test" value="true" />
|
||||||
|
</antcall>
|
||||||
|
<antcall target="javadoc">
|
||||||
|
<param name="no.test" value="true" />
|
||||||
|
</antcall>
|
||||||
<ant antfile="${basedir}/build/release.xml" />
|
<ant antfile="${basedir}/build/release.xml" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue