Subversion Repositories DevTools

Rev

Rev 814 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 814 Rev 822
Line 41... Line 41...
41
 
41
 
42
    <target name="package" 
42
    <target name="package" 
43
            depends="compile"
43
            depends="compile"
44
            description="Creates the jar archives.">
44
            description="Creates the jar archives.">
45
            
45
            
-
 
46
			<delete file="RippleManifest.txt"/>
-
 
47
			<property file="../version.properties"/>
-
 
48
			
-
 
49
			<manifest file="RippleManifest.txt">
-
 
50
				<attribute name="Specification-Title" value="${PACKAGE}"/>
-
 
51
				<attribute name="Specification-Version" value="${MAJOR}"/>
-
 
52
				<attribute name="Specification-Vendor" value="ERG Transit Systems"/>
-
 
53
				<attribute name="Implementation-Title" value="com.erggroup.buildtool.ripple"/>
-
 
54
				<attribute name="Implementation-Version" value="${VERSION}"/>
-
 
55
				<attribute name="Implementation-Vendor" value="Technology Group"/>
-
 
56
				<attribute name="Built-By" value="${user.name}"/>
-
 
57
				<attribute name="Built-Date" value="${BUILDDATE}"/>
-
 
58
			</manifest>
-
 
59
 
46
            <mkdir dir="${pkg.dir}"/>
60
            <mkdir dir="${pkg.dir}"/>
47
            <jar jarfile="${pkg.dir}/${ant.project.name}${GBE_TYPE}.jar"
61
            <jar jarfile="${pkg.dir}/${ant.project.name}${GBE_TYPE}.jar"
-
 
62
					manifest="${basedir}/RippleManifest.txt"
48
					basedir="${build.classes.dir}"
63
					basedir="${build.classes.dir}"
49
					includes = "com/erggroup/buildtool/ripple/*.class">
64
					includes = "com/erggroup/buildtool/ripple/*.class">
50
            </jar>
65
            </jar>
51
    </target>
66
    </target>
52
 
67