aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2010-07-12 14:59:01 +0000
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2010-07-12 14:59:01 +0000
commit04cac3354cde9cbbf72cd91cef559a02d0143b20 (patch)
tree1febf0158fee5ec0cf7db649599d2cc8456c9519 /build.xml
parenta16201daf3842b3abae0f876a6f43429fbee145c (diff)
downloadjitsi-04cac3354cde9cbbf72cd91cef559a02d0143b20.zip
jitsi-04cac3354cde9cbbf72cd91cef559a02d0143b20.tar.gz
jitsi-04cac3354cde9cbbf72cd91cef559a02d0143b20.tar.bz2
Merges branches/gsoc10/passwdstrg@7435 which represents the work of Dmitri Melnikov on the "Password storage" GSoC 2010 project into trunk.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml26
1 files changed, 25 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 202a0cf..faa9c5d 100644
--- a/build.xml
+++ b/build.xml
@@ -913,7 +913,8 @@
bundle-bouncycastle,bundle-plugin-otr,bundle-plugin-iptelaccregwizz,
bundle-contactsource,bundle-plugin-reconnect,
bundle-plugin-securityconfig,bundle-plugin-advancedconfig,
- bundle-plugin-sip2sipaccregwizz"/>
+ bundle-plugin-sip2sipaccregwizz,
+ bundle-credentialsstorage,bundle-credentialsstorage-slick"/>
<!--BUNDLE-SC-LAUNCHER-->
<target name="bundle-sc-launcher">
@@ -1049,6 +1050,29 @@
</jar>
</target>
+ <!--BUNDLE-CREDENTIALSSTORAGE-->
+ <target name="bundle-credentialsstorage">
+ <jar
+ compress="false"
+ destfile="${bundles.dest}/credentialsstorage.jar"
+ manifest="${src}/net/java/sip/communicator/impl/credentialsstorage/credentialsstorage.manifest.mf" >
+
+ <zipfileset dir="${dest}/net/java/sip/communicator/service/credentialsstorage"
+ prefix="net/java/sip/communicator/service/credentialsstorage"/>
+ <zipfileset dir="${dest}/net/java/sip/communicator/impl/credentialsstorage"
+ prefix="net/java/sip/communicator/impl/credentialsstorage" />
+ </jar>
+ </target>
+
+ <!--BUNDLE-CREDENTIALSSTORAGE-SLICK-->
+ <target name="bundle-credentialsstorage-slick">
+ <jar compress="false" destfile="${bundles.dest}/credentialsstorage-slick.jar"
+ manifest="${testsrc}/net/java/sip/communicator/slick/credentialsstorage/credentialsstorage.slick.manifest.mf">
+ <zipfileset dir="${dest}/net/java/sip/communicator/slick/credentialsstorage"
+ prefix="net/java/sip/communicator/slick/credentialsstorage"/>
+ </jar>
+ </target>
+
<!--BUNDLE-JUNIT -->
<target name="bundle-junit">
<jar compress="true" destfile="lib/bundle/junit.jar"