Changeset 3787 in osm
- Timestamp:
- 2007-07-27T06:01:54+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r3786 r3787 31 31 <!--<ant dir="nearclick" antfile="build.xml" target="dist"/>--> 32 32 <ant dir="osmarender" antfile="build.xml" target="build"/> 33 <ant dir="plastic_laf" antfile="build.xml" target="install"/> 34 <ant dir="pluginmanager" antfile="build.xml" target="install"/> 33 35 </target> 34 36 … … 44 46 <!--<ant dir="nearclick" antfile="build.xml" target="clean"/>--> 45 47 <ant dir="osmarender" antfile="build.xml" target="clean"/> 48 <ant dir="plastic_laf" antfile="build.xml" target="clean"/> 49 <ant dir="pluginmanager" antfile="build.xml" target="clean"/> 46 50 </target> 47 51 -
applications/editors/josm/plugins/plastic_laf/build.xml
r1551 r3787 2 2 3 3 <target name="install"> 4 <mkdir dir="dist"></mkdir> 5 <unjar dest="bin" src="lib/looks-2.0.4.jar" /> 4 6 <javac srcdir="src" destdir="bin"> 5 7 <include name="**/*.java" /> 6 8 </javac> 7 <unjar dest="bin" src="lib/looks-2.0.4.jar" /> 8 <jar destfile="${user.home}/.josm/plugins/plastic_laf.jar" basedir="bin"> 9 <jar destfile="dist/plastic_laf.jar" basedir="bin"> 9 10 <manifest> 10 11 <attribute name="Plugin-Class" value="plastic_laf.Plugin" /> … … 15 16 </target> 16 17 18 <target name="clean"> 19 <delete dir="dist" /> 20 </target> 21 17 22 </project> -
applications/editors/josm/plugins/pluginmanager/build.xml
r3454 r3787 2 2 3 3 <!-- compilation properties --> 4 <property name="josm.build.dir" value="../ JOSM"/>4 <property name="josm.build.dir" value="../../core"/> 5 5 <property name="josm.home.dir" value="${user.home}/.josm"/> 6 6 <property name="plugin.build.dir" value="bin"/>
Note:
See TracChangeset
for help on using the changeset viewer.