diff options
author | Damian Minkov <damencho@jitsi.org> | 2013-05-21 11:08:15 +0300 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2013-05-21 11:08:15 +0300 |
commit | bf9639acb5cfca21ff662cb42974ef04bc174130 (patch) | |
tree | 1d0576de3ae04c3798e918a0452c002506d96e0f /build.xml | |
parent | b7c31e61e0be2d880b2cd67491d6e754af70881b (diff) | |
download | jitsi-bf9639acb5cfca21ff662cb42974ef04bc174130.zip jitsi-bf9639acb5cfca21ff662cb42974ef04bc174130.tar.gz jitsi-bf9639acb5cfca21ff662cb42974ef04bc174130.tar.bz2 |
Adds customavatar service bundle.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -948,7 +948,7 @@ bundle-contactsource,bundle-plugin-reconnect,bundle-plugin-securityconfig, bundle-plugin-advancedconfig, bundle-credentialsstorage,bundle-credentialsstorage-slick, - bundle-plugin-nimbuzzavatar, + bundle-plugin-nimbuzzavatar,bundle-custom-avatar, bundle-replacement,bundle-youtube,bundle-dailymotion,bundle-smiley, bundle-vimeo,bundle-vbox7,bundle-metacafe,bundle-flickr,bundle-hulu, bundle-twitpic,bundle-directimage,bundle-bliptv,bundle-viddler, @@ -1193,8 +1193,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" prefix="net/java/sip/communicator/impl/hid" /> </jar> @@ -1343,8 +1341,6 @@ 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" @@ -2489,6 +2485,15 @@ javax.swing.event, javax.swing.border"/> </jar> </target> + <!-- BUNDLE-CUSTOM-AVATAR --> + <target name="bundle-custom-avatar"> + <jar compress="false" destfile="${bundles.dest}/customavatar-service.jar" + manifest="${src}/net/java/sip/communicator/service/customavatar/customavatar.manifest.mf"> + <zipfileset dir="${dest}/net/java/sip/communicator/service/customavatar" + prefix="net/java/sip/communicator/service/customavatar" /> + </jar> + </target> + <!-- BUNDLE-REPLACEMENT --> <target name="bundle-replacement"> <!-- Creates a bundle containing the replacement service.--> |