Changeset 3786 in osm for applications
- Timestamp:
- 2007-07-27T05:52:47+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r3785 r3786 29 29 <ant dir="namefinder" antfile="build.xml" target="dist"/> 30 30 <ant dir="navigator" antfile="build.xml" target="dist"/> 31 <!--<ant dir="nearclick" antfile="build.xml" target="dist"/>--> 32 <ant dir="osmarender" antfile="build.xml" target="build"/> 31 33 </target> 32 34 … … 40 42 <ant dir="namefinder" antfile="build.xml" target="clean"/> 41 43 <ant dir="navigator" antfile="build.xml" target="clean"/> 44 <!--<ant dir="nearclick" antfile="build.xml" target="clean"/>--> 45 <ant dir="osmarender" antfile="build.xml" target="clean"/> 42 46 </target> 43 47 -
applications/editors/josm/plugins/osmarender/build.xml
r1471 r3786 1 1 <project name="osmarender" default="install" basedir="."> 2 2 3 <property name="josm" location="../../ ../../editors/josm/dist/josm-custom.jar" />4 < property name="osmarender" location="../../../osmarender" />5 3 <property name="josm" location="../../core/dist/josm-custom.jar" /> 4 <!--<property name="osmarender" location="../../../osmarender" />--> 5 <property name="osmarender" location="../../../../rendering/osmarender" /> 6 6 7 7 <target name="compile"> … … 13 13 </target> 14 14 15 <target name="build" >15 <target name="build" depends="compile"> 16 16 <copy todir="bin"> 17 17 <fileset dir="${osmarender}"> … … 20 20 </fileset> 21 21 </copy> 22 <jar destfile=" ${user.home}/.josm/plugins/osmarender.jar" basedir="bin">22 <jar destfile="dist/osmarender.jar" basedir="bin"> 23 23 <manifest> 24 24 <attribute name="Plugin-Class" value="OsmarenderPlugin" />
Note:
See TracChangeset
for help on using the changeset viewer.