Changeset 5147 in osm for applications/editors/josm/plugins/plastic_laf
- Timestamp:
- 2007-10-24T07:31:46+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/plastic_laf/build.xml
r3792 r5147 1 1 <project name="plastic_laf" default="build" basedir="."> 2 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 <target name="build"> 4 <mkdir dir="dist"></mkdir> 5 <unjar dest="bin" src="lib/looks-2.0.4.jar" /> 6 <javac srcdir="src" destdir="bin"> 7 <include name="**/*.java" /> 8 </javac> 9 <jar destfile="dist/plastic_laf.jar" basedir="bin"> 10 <manifest> 11 <attribute name="Plugin-Class" value="plastic_laf.Plugin" /> 12 <attribute name="Plugin-Description" value="The great JGoodies Plastic Look and Feel" /> 13 <attribute name="Plugin-Early" value="true" /> 14 </manifest> 15 </jar> 16 </target> 17 17 18 19 20 18 <target name="clean"> 19 <delete dir="dist" /> 20 </target> 21 21 22 22 </project>
Note:
See TracChangeset
for help on using the changeset viewer.