diff options
author | Damian Minkov <damencho@jitsi.org> | 2013-05-17 09:11:53 +0300 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2013-05-17 09:11:53 +0300 |
commit | d85567ad14db771182d1accc3bb0474229567fb3 (patch) | |
tree | d5ff8f36b7aa039c2af1c2cb9131f11df7a00eba /build.xml | |
parent | c89ef5ecd7383ff23c36297976d507f14f16c7df (diff) | |
download | jitsi-d85567ad14db771182d1accc3bb0474229567fb3.zip jitsi-d85567ad14db771182d1accc3bb0474229567fb3.tar.gz jitsi-d85567ad14db771182d1accc3bb0474229567fb3.tar.bz2 |
Moves dns config as plugin.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -903,7 +903,8 @@ <!-- - - - - - - - - - - - - - BUNDLE BUILDING TARGETS - - - - - - - - --> <!--ALL BUNDLES--> <target name="bundles" - depends="bundle-sc-launcher,bundle-util,bundle-service-dns,bundle-impl-dns, + depends="bundle-sc-launcher,bundle-util,bundle-service-dns, + bundle-impl-dns,bundle-dns-config, bundle-configuration,bundle-configuration-slick, bundle-history,bundle-history-slick,bundle-messagehistory, bundle-msghistory-slick, bundle-callhistory, bundle-callhistory-slick, bundle-popupmessagehandler-slick, @@ -1091,6 +1092,15 @@ prefix="net/java/sip/communicator/impl/dns"/> </jar> </target> + <!--BUNDLE-DNS-CONFIG--> + <target name="bundle-dns-config"> + <!-- Create the dnsconfig.jar--> + <jar compress="true" destfile="${bundles.dest}/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> <!--BUNDLE-CONFIGURATION--> <target name="bundle-configuration"> |