| Line 44... |
Line 44... |
| 44 |
|
44 |
|
| 45 |
<target name="package"
|
45 |
<target name="package"
|
| 46 |
depends="compile"
|
46 |
depends="compile"
|
| 47 |
description="Creates the jar archives.">
|
47 |
description="Creates the jar archives.">
|
| 48 |
|
48 |
|
| - |
|
49 |
<delete file="DaemonManifest.txt"/>
|
| - |
|
50 |
<property file="../version.properties"/>
|
| - |
|
51 |
|
| - |
|
52 |
<manifest file="DaemonManifest.txt">
|
| - |
|
53 |
<attribute name="Specification-Title" value="${PACKAGE}"/>
|
| - |
|
54 |
<attribute name="Specification-Version" value="${MAJOR}"/>
|
| - |
|
55 |
<attribute name="Specification-Vendor" value="ERG Transit Systems"/>
|
| - |
|
56 |
<attribute name="Implementation-Title" value="com.erggroup.buildtool.daemon"/>
|
| - |
|
57 |
<attribute name="Implementation-Version" value="${VERSION}"/>
|
| - |
|
58 |
<attribute name="Implementation-Vendor" value="Technology Group"/>
|
| - |
|
59 |
<attribute name="Built-By" value="${user.name}"/>
|
| - |
|
60 |
<attribute name="Built-Date" value="${BUILDDATE}"/>
|
| - |
|
61 |
<attribute name="Main-Class" value="com.erggroup.buildtool.daemon.BuildDaemon"/>
|
| - |
|
62 |
<attribute name="Class-Path" value="rippleEngineD.jar ant-abtD.jar ant.jar ant-launcher.jar mail.jar classes12.jar log4j-1.2.14.jar"/>
|
| - |
|
63 |
</manifest>
|
| - |
|
64 |
|
| 49 |
<mkdir dir="${pkg.dir}"/>
|
65 |
<mkdir dir="${pkg.dir}"/>
|
| 50 |
<jar jarfile="${pkg.dir}/${ant.project.name}${GBE_TYPE}.jar" manifest="${basedir}/DaemonManifest.txt"
|
66 |
<jar jarfile="${pkg.dir}/${ant.project.name}${GBE_TYPE}.jar"
|
| - |
|
67 |
manifest="${basedir}/DaemonManifest.txt"
|
| 51 |
basedir="${build.classes.dir}"
|
68 |
basedir="${build.classes.dir}"
|
| 52 |
includes = "com/erggroup/buildtool/daemon/*.class">
|
69 |
includes = "com/erggroup/buildtool/daemon/*.class">
|
| 53 |
</jar>
|
70 |
</jar>
|
| 54 |
</target>
|
71 |
</target>
|
| 55 |
|
72 |
|