add deployment folder

git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@726 c66351dc-e62f-0410-b875-e3a5c0b9693f
This commit is contained in:
Evgeny Gryaznov 2010-01-16 23:29:40 +00:00
parent 9a054da64b
commit 3988fe9724
6 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
<key>CFBundleName</key>
<string>Mibew Notifier</string>
<key>CFBundleIdentifier</key>
<string>org.mibew.notifier</string>
<key>CFBundleVersion</key>
<string>100.0</string>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleExecutable</key>
<string>MibewNotifier</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleGetInfoString</key>
<string>Mibew Notifier 1.0, build 17 Jan, 2010</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>mibew.icns</string>
<key>Java</key>
<dict>
<key>WorkingDirectory</key>
<string>$APP_PACKAGE/Contents/Resources/Java</string>
<key>VMOptions</key>
<string>-Xms16mm</string>
<key>MainClass</key>
<string>org.mibew.trayapp.NotifyApp</string>
<key>JVMVersion</key>
<string>1.6+</string>
<key>ClassPath</key>
<array>
<string>$JAVAROOT/org.mibew.jabber.jar</string>
<string>$JAVAROOT/smackx.jar</string>
<string>$JAVAROOT/smackx-jingle.jar</string>
<string>$JAVAROOT/smackx-debug.jar</string>
<string>$JAVAROOT/smack.jar</string>
</array>
</dict>
</dict>
</plist>

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="build" name="org.mibew.notifier">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.6"/>
<property name="source" value="1.6"/>
<target name="init">
<mkdir dir="bin"/>
</target>
<target name="clean">
<delete dir="bin"/>
</target>
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file}"/>
<copy includeemptydirs="false" todir="bin">
<fileset dir="../src" excludes="**/*.java, **/*.ini"/>
</copy>
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
<src path="../src"/>
<classpath>
<fileset dir="../libs">
<include name="**/*.jar"/>
</fileset>
</classpath>
</javac>
<jar destfile="org.mibew.notifier.jar">
<fileset dir="bin"/>
<manifest>
<attribute name="Main-Class" value="org.mibew.trayapp.NotifyApp"/>
</manifest>
</jar>
</target>
<target depends="build" name="package">
<copy includeemptydirs="false" todir="Mibew Notifier.app/Contents/Resources/Java">
<fileset dir="../libs">
<include name="*.jar"/>
</fileset>
</copy>
</target>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB