diff options
author | Yana Stamcheva <yana@jitsi.org> | 2007-01-14 20:07:22 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2007-01-14 20:07:22 +0000 |
commit | cca2bc13d0cae8fac9165447781dc003cdb1eee8 (patch) | |
tree | 0dd4b64b14b3e0e2ace68d3da3e16d2ab6887dca /build.xml | |
parent | 490ac790468a7c0c1aa6b36e8c8192fb94f9314b (diff) | |
download | jitsi-cca2bc13d0cae8fac9165447781dc003cdb1eee8.zip jitsi-cca2bc13d0cae8fac9165447781dc003cdb1eee8.tar.gz jitsi-cca2bc13d0cae8fac9165447781dc003cdb1eee8.tar.bz2 |
audio notifier service and implementation
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -725,7 +725,7 @@ bundle-plugin-msnaccregwizz,bundle-plugin-sipaccregwizz, bundle-plugin-yahooaccregwizz, bundle-version,bundle-version-impl,bundle-shutdown, - bundle-growlnotification"/> + bundle-growlnotification,bundle-audionotifier"/> <!--BUNDLE-HISTORY--> <target name="bundle-history"> @@ -1235,4 +1235,18 @@ javax.swing.event, javax.swing.border"/> prefix="net/java/sip/communicator/impl/growlnotification" /> </jar> </target> + + <!--BUNDLE-AUDIO NOTIFIER--> + <target name="bundle-audionotifier"> + <!-- Creates a bundle for the audio notifier service.--> + <jar compress="false" destfile="${bundles.dest}/audionotifier.jar" + manifest="src/net/java/sip/communicator/impl/audionotifier/audionotifier.manifest.mf"> + <zipfileset dir="${dest}/net/java/sip/communicator/service/audionotifier" + prefix="net/java/sip/communicator/service/audionotifier"/> + <zipfileset dir="${dest}/net/java/sip/communicator/impl/audionotifier" + prefix="net/java/sip/communicator/impl/audionotifier" /> + <zipfileset dir="resources/sounds" + prefix="resources/sounds"/> + </jar> + </target> </project> |