[Japi-cvs] SF.net SVN: japi: [300] tools/string2bytes/trunk/build.xml
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2007-01-14 23:20:50
|
Revision: 300 http://svn.sourceforge.net/japi/?rev=300&view=rev Author: christianhujer Date: 2007-01-14 15:20:49 -0800 (Sun, 14 Jan 2007) Log Message: ----------- Added ant target for building the application. Modified Paths: -------------- tools/string2bytes/trunk/build.xml Modified: tools/string2bytes/trunk/build.xml =================================================================== --- tools/string2bytes/trunk/build.xml 2007-01-14 21:11:55 UTC (rev 299) +++ tools/string2bytes/trunk/build.xml 2007-01-14 23:20:49 UTC (rev 300) @@ -184,4 +184,22 @@ </javadoc> </target> + <target + name = "buildapp" + > + <property name="appName" value="${module.name}-${module.version}-app" /> + <jar destfile="${appName}.jar"> + <zipfileset dir="classes/production/${module.shortname}"/> + <zipgroupfileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" /> + <manifest> + <attribute name="Main-Class" value="${main.class}" /> + <!--attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" /--> + <attribute name="Implementation-Title" value="${module.name}" /> + <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" /> + <attribute name="Implementation-Version" value="${module.version}" /> + <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" /> + </manifest> + </jar> + </target> + </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |