gitweb on Svarog

projekti pod git sistemom za održavanje verzija -- projects under the git version control system
jar task for m2
[pub/donny/ant-tasks.git] / build.xml
1 <project name="ant-tasks" default='build'>
2 <property name="bin.dir" value="bin"/>
3 <property name="src.dir" value="."/>
4 <property name="dist.dir" value='dist'/>
6 <target name='init'>
7 <mkdir dir="${bin.dir}"/>
8 </target>
10 <target name='build' depends="init">
11 <javac srcdir="${src.dir}" destdir="${bin.dir}"
12 includeAntRuntime="yes" />
13 </target>
15 <target name='jar' depends="build">
16 <jar destfile="${dist.dir}/ant-m2.jar" basedir="${bin.dir}/"
17 includes="com/quemaster/ant/m2/**" >
18 <manifest>
19 <!-- Who is building this jar? -->
20 <attribute name="Built-By" value="${user.name}"/>
21 <!-- Information about the program itself -->
22 <attribute name="Implementation-Vendor"
23 value="Doni Pracner"/>
24 <attribute name="Implementation-Title"
25 value="Ant Tasks for Modula 2"/>
26 <attribute name="Implementation-Version" value="1.0.0"/>
27 </manifest>
28 </jar>
29 </target>
31 </project>
Svarog.pmf.uns.ac.rs/gitweb maintanance Doni Pracner