Changeset 29734 in osm for applications/editors/josm/plugins
- Timestamp:
- 2013-07-02T00:57:43+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/.classpath
r16160 r29734 2 2 <classpath> 3 3 <classpathentry kind="src" path="src"/> 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER /org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 5"/>4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 5 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 <classpathentry kind="output" path="build"/> 6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-GeoTools"/> 7 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-jts"/> 8 <classpathentry kind="output" path="bin"/> 7 9 </classpath> -
applications/editors/josm/plugins/cadastre-fr/.project
r16160 r29734 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <projectDescription> 3 <name> JOSM-Cadastre-fr</name>3 <name>cadastre-fr</name> 4 4 <comment></comment> 5 5 <projects> 6 <project>JOSM</project> 6 7 </projects> 7 8 <buildSpec> -
applications/editors/josm/plugins/cadastre-fr/build.xml
r29596 r29734 15 15 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/> 16 16 <property name="plugin.stage" value="60"/> 17 <property name="plugin.requires" value="jts;geotools"/> 17 18 18 19 <!-- ** include targets that all plugins have in common ** --> 19 20 <import file="../build-common.xml"/> 21 22 <property name="jts" location="../../dist/jts.jar"/> 23 <property name="geotools" location="../../dist/geotools.jar"/> 24 25 <!-- 26 ********************************************************** 27 ** compile - compiles the source tree 28 ********************************************************** 29 --> 30 <target name="compile"> 31 <echo message="compiling sources for ${plugin.jar} ... "/> 32 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8"> 33 <classpath> 34 <pathelement path="${plugin.build.dir}"/> 35 <pathelement location="${josm}"/> 36 <pathelement location="${jts}"/> 37 <pathelement location="${geotools}"/> 38 </classpath> 39 <compilerarg value="-Xlint:deprecation"/> 40 <compilerarg value="-Xlint:unchecked"/> 41 </javac> 42 </target> 20 43 </project>
Note:
See TracChangeset
for help on using the changeset viewer.