aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2013-01-27 18:48:40 +0000
committerYana Stamcheva <yana@jitsi.org>2013-01-27 18:48:40 +0000
commitebc645908f9a7f029f84fb4e3b567c837072b3fb (patch)
treeb284930deed60aa2e2905e4596d3caa08229d6af /build.xml
parentec3fcc8293f32537b7eb24e221f58f327ebf58b5 (diff)
downloadjitsi-ebc645908f9a7f029f84fb4e3b567c837072b3fb.zip
jitsi-ebc645908f9a7f029f84fb4e3b567c837072b3fb.tar.gz
jitsi-ebc645908f9a7f029f84fb4e3b567c837072b3fb.tar.bz2
Separates dns package to service and impl. Creates a ParallelResolver interface that can be used from the util package. Moves NetworkUtils back to util package. Moves dnsconfig plugin to the impl/dns package (because it was using implementation classes directly).
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml30
1 files changed, 16 insertions, 14 deletions
diff --git a/build.xml b/build.xml
index 4e47906..88ee62d 100644
--- a/build.xml
+++ b/build.xml
@@ -899,7 +899,7 @@
<!-- - - - - - - - - - - - - - BUNDLE BUILDING TARGETS - - - - - - - - -->
<!--ALL BUNDLES-->
<target name="bundles"
- depends="bundle-sc-launcher,bundle-util,bundle-util-dns,
+ depends="bundle-sc-launcher,bundle-util,bundle-service-dns,bundle-impl-dns,
bundle-configuration,bundle-configuration-slick,
bundle-history,bundle-history-slick,bundle-messagehistory, bundle-msghistory-slick,
bundle-callhistory, bundle-callhistory-slick, bundle-popupmessagehandler-slick,
@@ -943,7 +943,7 @@
bundle-vimeo,bundle-vbox7,bundle-metacafe,bundle-flickr,bundle-hulu,
bundle-twitpic,bundle-directimage,bundle-bliptv,bundle-viddler,
bundle-plugin-chatconfig,bundle-certificate,bundle-packetlogging,
- bundle-plugin-loggingutils,bundle-plugin-dnsconfig,
+ bundle-plugin-loggingutils,
bundle-provdisc,bundle-provdisc-dhcp,bundle-provdisc-mdns,
bundle-provisioning,bundle-addrbook,bundle-plugin-ldap,
bundle-plugin-contactsourceconfig,bundle-plugin-certconfig,
@@ -1067,12 +1067,22 @@
</target>
<!--BUNDLE-UTIL-DNS-->
- <target name="bundle-util-dns">
+ <target name="bundle-service-dns">
+ <!-- Create the dns.jar-->
+ <jar compress="true" destfile="${bundles.dest}/dnsservice.jar"
+ manifest="${src}/net/java/sip/communicator/service/dns/dns.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/dns"
+ prefix="net/java/sip/communicator/service/dns"/>
+ </jar>
+ </target>
+
+ <!--BUNDLE-UTIL-DNS-->
+ <target name="bundle-impl-dns">
<!-- Create the dns.jar-->
<jar compress="true" destfile="${bundles.dest}/dns.jar"
- 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"/>
+ manifest="${src}/net/java/sip/communicator/impl/dns/dns.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/impl/dns"
+ prefix="net/java/sip/communicator/impl/dns"/>
</jar>
</target>
@@ -2665,14 +2675,6 @@ javax.swing.event, javax.swing.border"/>
</jar>
</target>
- <target name="bundle-plugin-dnsconfig">
- <jar compress="false" destfile="${bundles.dest}/plugin-dnsconfig.jar"
- manifest="${src}/net/java/sip/communicator/plugin/dnsconfig/dnsconfig.manifest.mf">
- <zipfileset dir="${dest}/net/java/sip/communicator/plugin/dnsconfig"
- prefix="net/java/sip/communicator/plugin/dnsconfig" />
- </jar>
- </target>
-
<target name="bundle-systemactivitynotifications">
<jar compress="false" destfile="${bundles.dest}/sysactivitynotifications.jar"
manifest="${src}/net/java/sip/communicator/impl/sysactivity/sysactivity.impl.manifest.mf">