diff options
author | Yana Stamcheva <yana@jitsi.org> | 2013-01-24 23:22:33 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2013-01-24 23:22:33 +0000 |
commit | 91b72c32024340e10cb9d295055666d07f41795e (patch) | |
tree | 2ecbe6a9487ac07c1c2286f3b4a88aefdbc52f0c /build.xml | |
parent | cd2a006b80c6502910387442c5f038b8ef2e8791 (diff) | |
download | jitsi-91b72c32024340e10cb9d295055666d07f41795e.zip jitsi-91b72c32024340e10cb9d295055666d07f41795e.tar.gz jitsi-91b72c32024340e10cb9d295055666d07f41795e.tar.bz2 |
Moves desktop related utils to plugin/desktoputils. Separates ComponentUtils and WindowsUtils from general GuiUtils.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 24 |
1 files changed, 18 insertions, 6 deletions
@@ -949,7 +949,7 @@ bundle-plugin-contactsourceconfig,bundle-plugin-certconfig, bundle-globalshortcut,bundle-plugin-msofficecomm,bundle-libjitsi, bundle-customcontactactions, bundle-phonenumbercontactsource, - bundle-demuxcontactsource"/> + bundle-demuxcontactsource, bundle-desktoputil"/> <!--BUNDLE-SC-LAUNCHER--> <target name="bundle-sc-launcher"> @@ -1061,10 +1061,8 @@ manifest="${src}/net/java/sip/communicator/util/util.manifest.mf"> <zipfileset dir="${dest}/net/java/sip/communicator/util" prefix="net/java/sip/communicator/util"> - <exclude name="dns/**"/> </zipfileset> <zipfileset src="${lib.noinst}/dnsjava.jar" prefix=""/> - <zipfileset src="lib/installer-exclude/laf-widget.jar" prefix=""/> </jar> </target> @@ -1072,9 +1070,9 @@ <target name="bundle-util-dns"> <!-- Create the dns.jar--> <jar compress="true" destfile="${bundles.dest}/dns.jar" - manifest="${src}/net/java/sip/communicator/util/dns/util.dns.manifest.mf"> - <zipfileset dir="${dest}/net/java/sip/communicator/util/dns" - prefix="net/java/sip/communicator/util/dns"/> + manifest="${src}/net/java/sip/communicator/plugin/desktoputil/dns/desktoputil.dns.manifest.mf"> + <zipfileset dir="${dest}/net/java/sip/communicator/plugin/desktoputil/dns" + prefix="net/java/sip/communicator/plugin/desktoputil/dns"/> </jar> </target> @@ -2751,4 +2749,18 @@ javax.swing.event, javax.swing.border"/> prefix="net/java/sip/communicator/plugin/demuxcontactsource"/> </jar> </target> + + <!-- BUNDLE-SWING-UTIL --> + <target name="bundle-desktoputil"> + <!-- Creates a bundle containing the swing utility packages.--> + <jar compress="false" destfile="${bundles.dest}/desktoputil.jar" + manifest="${src}/net/java/sip/communicator/plugin/desktoputil/desktoputil.manifest.mf"> + <zipfileset dir="${dest}/net/java/sip/communicator/plugin/desktoputil" + prefix="net/java/sip/communicator/plugin/desktoputil"> + <exclude name="dns/**"/> + </zipfileset> + <zipfileset src="lib/installer-exclude/laf-widget.jar" prefix=""/> + <zipfileset src="${lib.noinst}/dnsjava.jar" prefix=""/> + </jar> + </target> </project> |