[Schmitzm-commits] r9 - trunk
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Feb 25 16:09:52 CET 2009
Author: alfonx
Date: 2009-02-25 16:09:51 +0100 (Wed, 25 Feb 2009)
New Revision: 9
Added:
trunk/build.xml
Modified:
trunk/
Log:
Ant Build File zur Erstellung eines Release-JARs
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
- classes
javadoc
+ classes
javadoc
schmitzm.jar
.project
.classpath
.settings
Added: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-02-25 14:05:29 UTC (rev 8)
+++ trunk/build.xml 2009-02-25 15:09:51 UTC (rev 9)
@@ -0,0 +1,21 @@
+<!-- Das Build File für SCHMITZM-->
+
+<project default="jar" basedir=".">
+
+ <target name="jar">
+ <jar destfile="schmitzm.jar" index="false" level="8" duplicate="preserve">
+ <fileset dir="classes">
+ <exclude name="schmitzm/test**" />
+ <exclude name="**/*.html" />
+ <exclude name="**/*.xcf" />
+ <exclude name="**/Thumbs.db" />
+ </fileset>
+
+ <manifest>
+ <attribute name="Created-By" value="Martin O.J. Schmitz, Stefan A. Krüger" />
+ </manifest>
+
+ </jar>
+ </target>
+
+</project>
Property changes on: trunk/build.xml
___________________________________________________________________
Name: svn:mime-type
+ text/xml
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
More information about the Schmitzm-commits
mailing list