Changeset 4024 in osm for applications/editors/josm/plugins/validator/build.xml
- Timestamp:
- 2007-08-08T22:30:31+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r3577 r4024 17 17 18 18 <target name="build" depends="clean, compile"> 19 <copy todir="build/resources">20 <fileset dir="resources"/>21 </copy>22 19 <copy todir="build/images"> 23 20 <fileset dir="images"/> 24 21 </copy> 25 <exec append="false" output=" build/resources/REVISION" executable="svn" failifexecutionfails="false">22 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 26 23 <env key="LANG" value="C"/> 27 24 <arg value="info"/> 25 <arg value="--xml"/> 28 26 <arg value="."/> 29 27 </exec> 30 <property file="build/resources/REVISION" /> 28 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 29 <delete file="REVISION"/> 31 30 <jar destfile="validator.jar" basedir="build"> 32 31 <manifest> 33 32 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.validator.OSMValidatorPlugin"/> 34 33 <attribute name="Plugin-Description" value="A OSM data validator"/> 35 <attribute name="Plugin-Version" value="${Revision}"/> 34 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 36 36 <attribute name="Author" value="Francisco R. Santos <frsantos@gmail.com>"/> 37 37 </manifest>
Note:
See TracChangeset
for help on using the changeset viewer.