Changeset 31763 in osm for applications
- Timestamp:
- 2015-11-16T22:53:30+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapdust
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapdust/.classpath
r30532 r31763 5 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> 6 6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 7 <classpathentry kind="lib" path="lib/gson-2.2.4.jar"/>7 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-GSON"/> 8 8 <classpathentry kind="output" path="build/classes"/> 9 9 </classpath> -
applications/editors/josm/plugins/mapdust/build.xml
r30500 r31763 4 4 <property name="commit.message" value="MapDust bug reporter plugin"/> 5 5 <property name="plugin.main.version" value="7001"/> 6 7 6 <property name="apidoc.dir" value="doc"/> 8 7 … … 14 13 <import file="../build-common.xml"/> 15 14 16 <!-- classpath --> 17 <path id="classpath"> 18 <fileset dir="${plugin.lib.dir}" includes="**/*.jar"/> 19 <pathelement path="${josm}"/> 20 </path> 21 22 <!-- 23 ********************************************************** 24 ** compile - complies the source tree 25 ********************************************************** 26 --> 27 <target name="compile" depends="init"> 28 <echo message="compiling sources for ${plugin.jar} ..."/> 29 <javac srcdir="src" classpathref="classpath" debug="true" destdir="${plugin.build.dir}" includeantruntime="false"> 30 <compilerarg value="-Xlint:deprecation"/> 31 <compilerarg value="-Xlint:unchecked"/> 32 </javac> 33 </target> 15 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> 16 <include name="gson.jar"/> 17 </fileset> 34 18 35 19 <target name="clean"> … … 69 53 </copy> 70 54 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 71 <zipfileset src="lib/gson-2.2.4.jar"/>72 55 <manifest> 73 56 <attribute name="Author" value="Beata Jancso"/> … … 77 60 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/MapDust"/> 78 61 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 62 <attribute name="Plugin-Requires" value="gson"/> 79 63 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 80 64 <attribute name="Plugin-Icon" value="images/dialogs/mapdust_icon25.png"/>
Note:
See TracChangeset
for help on using the changeset viewer.