aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorDamian Minkov <damencho@jitsi.org>2013-05-20 15:32:03 +0300
committerDamian Minkov <damencho@jitsi.org>2013-05-20 15:36:22 +0300
commit999e962b797c595c5d25b5f8d4fd58708199c1c0 (patch)
treecb4290d87f8399b930d04416d057e5411af32a4c /build.xml
parent8385a03fdf31e7325d887e5adf6cdc4bcb391da5 (diff)
downloadjitsi-999e962b797c595c5d25b5f8d4fd58708199c1c0.zip
jitsi-999e962b797c595c5d25b5f8d4fd58708199c1c0.tar.gz
jitsi-999e962b797c595c5d25b5f8d4fd58708199c1c0.tar.bz2
Creates separate jar with default resource pack classes to be used in android (created in os-specific bundles, to avoid inclusion in installations).
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 17fd0f0..a9dc451 100644
--- a/build.xml
+++ b/build.xml
@@ -13,6 +13,7 @@
<property name="bundles.dest.lin" value="${bundles.dest}/os-specific/linux"/>
<property name="bundles.dest.sol" value="${bundles.dest}/os-specific/solaris"/>
<property name="bundles.dest.freebsd" value="${bundles.dest}/os-specific/freebsd"/>
+ <property name="bundles.dest.android" value="${bundles.dest}/os-specific/android"/>
<property name="doc" value="doc"/>
<property name="java.doc" value="${doc}/api"/>
<property name="lib" value="${sc.basedir}/lib"/>
@@ -502,6 +503,7 @@
<mkdir dir="${bundles.dest.win}"/>
<mkdir dir="${bundles.dest.freebsd}"/>
<mkdir dir="${bundles.dest.sol}"/>
+ <mkdir dir="${bundles.dest.android}"/>
<mkdir dir="${test.reports.dir}"/>
<mkdir dir="${test.reports.dir}/html"/>
@@ -2256,6 +2258,13 @@ javax.swing.event, javax.swing.border"/>
<zipfileset dir="${resources}/skinresourcepack"
prefix="resources/skinresourcepack"/>
</jar>
+ <!-- Creates a bundle for the default resource pack classes.
+ Used in android.-->
+ <jar
+ compress="false" destfile="${bundles.dest.android}/defaultresources.jar">
+ <zipfileset dir="${dest}/net/java/sip/communicator/plugin/defaultresourcepack"
+ prefix="net/java/sip/communicator/plugin/defaultresourcepack"/>
+ </jar>
</target>
<!--BUNDLE-RESOURCE-MANAGER-->