mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Added support for creating a smackx.jar which includes the ${basedir}/resources/smack.properties file.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1997 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
96e6de8dd7
commit
b6f29af94a
1 changed files with 7 additions and 1 deletions
|
@ -60,10 +60,16 @@
|
|||
<target name="jar" depends="compile" unless="jar.uptodate" description="Produces smack.jar">
|
||||
<jar destfile="${jar.dest.dir}/smack.jar"
|
||||
basedir="${compile.dir}"
|
||||
includes="**/*.class"
|
||||
includes="org/jivesoftware/smack/**/*.class"
|
||||
>
|
||||
<zipfileset src="${merge.lib.dir}/xpp.jar"/>
|
||||
</jar>
|
||||
<jar destfile="${jar.dest.dir}/smackx.jar"
|
||||
basedir="${compile.dir}"
|
||||
includes="org/jivesoftware/smackx/**/*.class"
|
||||
>
|
||||
<metainf dir="${basedir}/resources" includes="smack.providers" />
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
<!-- javadoc -->
|
||||
|
|
Loading…
Reference in a new issue