aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2013-04-19 22:34:24 +0000
committerYana Stamcheva <yana@jitsi.org>2013-04-19 22:34:24 +0000
commit60c4cf713a4494565a89c861d4592c3584322476 (patch)
treecfb3f29f3d3b6f551f97d6da4b081b2786d016aa /build.xml
parentfeaf9de89c23fcebf4b1555a2a135739ac3e4be5 (diff)
downloadjitsi-60c4cf713a4494565a89c861d4592c3584322476.zip
jitsi-60c4cf713a4494565a89c861d4592c3584322476.tar.gz
jitsi-60c4cf713a4494565a89c861d4592c3584322476.tar.bz2
Adds a global display details service giving access to the global display name and the global avatar. Uses this new service to show the global display name and avatar in the conference call interface.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index c17c4f5..ff01712 100644
--- a/build.xml
+++ b/build.xml
@@ -954,7 +954,8 @@
bundle-plugin-contactsourceconfig,bundle-plugin-certconfig,
bundle-globalshortcut,bundle-plugin-msofficecomm,bundle-libjitsi,
bundle-customcontactactions, bundle-phonenumbercontactsource,
- bundle-demuxcontactsource, bundle-desktoputil"/>
+ bundle-demuxcontactsource, bundle-desktoputil,
+ bundle-globaldisplaydetails"/>
<!--BUNDLE-SC-LAUNCHER-->
<target name="bundle-sc-launcher">
@@ -2762,4 +2763,16 @@ javax.swing.event, javax.swing.border"/>
<zipfileset src="lib/installer-exclude/laf-widget.jar" prefix=""/>
</jar>
</target>
+
+ <!--BUNDLE-GLOBALDISPLAYDETAILS-->
+ <target name="bundle-globaldisplaydetails">
+ <jar compress="false" destfile="${bundles.dest}/globaldisplaydetails.jar"
+ manifest="${src}/net/java/sip/communicator/impl/globaldisplaydetails/globaldisplaydetails.manifest.mf">
+
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/globaldisplaydetails"
+ prefix="net/java/sip/communicator/service/globaldisplaydetails"/>
+ <zipfileset dir="${dest}/net/java/sip/communicator/impl/globaldisplaydetails"
+ prefix="net/java/sip/communicator/impl/globaldisplaydetails" />
+ </jar>
+ </target>
</project>