aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorDamian Minkov <damencho@jitsi.org>2013-05-20 10:38:05 +0300
committerDamian Minkov <damencho@jitsi.org>2013-05-20 15:36:21 +0300
commit1c8985440325af05b3f23f585f0c0ad9d92f4237 (patch)
tree398d86dc73dc9a03b5342746dedd4ec09ec007ef /build.xml
parent4d4a2c8eef0ae455ae9880b560134a333d64bd3d (diff)
downloadjitsi-1c8985440325af05b3f23f585f0c0ad9d92f4237.zip
jitsi-1c8985440325af05b3f23f585f0c0ad9d92f4237.tar.gz
jitsi-1c8985440325af05b3f23f585f0c0ad9d92f4237.tar.bz2
Separates some services to be reused in android.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml26
1 files changed, 22 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index fec3a1b..e16f9a6 100644
--- a/build.xml
+++ b/build.xml
@@ -910,7 +910,9 @@
bundle-callhistory, bundle-callhistory-slick, bundle-popupmessagehandler-slick,
bundle-netaddr,bundle-netaddr-slick,bundle-slickless,
bundle-slick-runner,bundle-sip,bundle-sip-slick,bundle-fileaccess,
- bundle-fileaccess-slick,bundle-neomedia,bundle-hid,bundle-ldap,bundle-googlecontacts,
+ bundle-fileaccess-slick,bundle-neomedia,bundle-ldap,
+ bundle-googlecontacts-service,bundle-googlecontacts,
+ bundle-hid-service,bundle-hid,
bundle-resource-manager,bundle-resources-defaultpack,
bundle-protocol,bundle-protocol-media,bundle-icq,
bundle-icq-slick,bundle-mock,bundle-smacklib,bundle-jmdnslib,
@@ -1189,7 +1191,6 @@
<target name="bundle-hid">
<jar compress="false" destfile="${bundles.dest}/hid.jar"
manifest="${src}/net/java/sip/communicator/impl/hid/hid.manifest.mf">
-
<zipfileset dir="${dest}/net/java/sip/communicator/service/hid"
prefix="net/java/sip/communicator/service/hid"/>
<zipfileset dir="${dest}/net/java/sip/communicator/impl/hid"
@@ -1197,6 +1198,15 @@
</jar>
</target>
+ <!--BUNDLE-HID-SERVICE -->
+ <target name="bundle-hid-service">
+ <jar compress="false" destfile="${bundles.dest}/hid-service.jar"
+ manifest="${src}/net/java/sip/communicator/service/hid/hid.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/hid"
+ prefix="net/java/sip/communicator/service/hid"/>
+ </jar>
+ </target>
+
<!--BUNDLE-LDAP-->
<target name="bundle-ldap">
<jar compress="false" destfile="${bundles.dest}/ldap.jar"
@@ -1224,6 +1234,14 @@
<zipfileset src="${lib.noinst}/gdata-client-meta-1.0.jar" prefix=""/>
</jar>
</target>
+ <!--BUNDLE-GOOGLECONTACTS-SERVICE-->
+ <target name="bundle-googlecontacts-service">
+ <jar compress="false" destfile="${bundles.dest}/googlecontacts-service.jar"
+ manifest="${src}/net/java/sip/communicator/service/googlecontacts/googlecontacts.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/googlecontacts"
+ prefix="net/java/sip/communicator/service/googlecontacts"/>
+ </jar>
+ </target>
<!--BUNDLE-SERVICEBINDER -->
<target name="bundle-servicebinder">
@@ -1323,6 +1341,8 @@ javax.swing.event, javax.swing.border"/>
<!-- Creates a bundle containing the protocol provider interfaces.-->
<jar compress="false" destfile="${bundles.dest}/protocol.jar"
manifest="${src}/net/java/sip/communicator/service/protocol/protocol.provider.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/customavatar"
+ prefix="net/java/sip/communicator/service/customavatar" />
<zipfileset dir="${dest}/net/java/sip/communicator/service/protocol"
prefix="net/java/sip/communicator/service/protocol"/>
<zipfileset dir="${resources}/images"
@@ -2446,8 +2466,6 @@ javax.swing.event, javax.swing.border"/>
manifest="${src}/net/java/sip/communicator/plugin/nimbuzzavatars/nimbuzzavatars.manifest.mf">
<zipfileset dir="${dest}/net/java/sip/communicator/plugin/nimbuzzavatars"
prefix="net/java/sip/communicator/plugin/nimbuzzavatars" />
- <zipfileset dir="${dest}/net/java/sip/communicator/service/customavatar"
- prefix="net/java/sip/communicator/service/customavatar" />
</jar>
</target>