Changeset 31677 in osm for applications
- Timestamp:
- 2015-10-25T01:09:59+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.classpath
r31465 r31677 10 10 <classpathentry kind="lib" path="lib/httpcore-4.4.1.jar"/> 11 11 <classpathentry kind="lib" path="lib/httpmime-4.5.jar"/> 12 <classpathentry combineaccessrules="false" kind="src" path="/JOSM- commons-imaging"/>12 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/> 13 13 <classpathentry kind="output" path="bin"/> 14 14 </classpath> -
applications/editors/josm/plugins/mapillary/build.xml
r31550 r31677 12 12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Mapillary"/> 13 13 <!--<property name="plugin.early" value="..."/>--> 14 <property name="plugin.requires" value=" commons-imaging"/>14 <property name="plugin.requires" value="apache-commons"/> 15 15 <!--<property name="plugin.stage" value="..."/>--> 16 16 … … 23 23 24 24 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> 25 <include name=" commons-imaging.jar"/>25 <include name="apache-commons.jar"/> 26 26 </fileset> 27 27 </project> -
applications/editors/josm/plugins/opendata/.classpath
r30550 r31677 16 16 <classpathentry kind="src" path="util"/> 17 17 <classpathentry kind="src" path="test/unit"/> 18 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>19 18 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 20 19 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-utilsplugin2"/> … … 22 21 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-jts"/> 23 22 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 23 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> 24 <attributes> 25 <attribute name="owner.project.facets" value="java"/> 26 </attributes> 27 </classpathentry> 28 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/> 24 29 <classpathentry kind="output" path="bin"/> 25 30 </classpath> -
applications/editors/josm/plugins/opendata/.settings/org.sonar.ide.eclipse.core.prefs
r30731 r31677 1 1 eclipse.preferences.version=1 2 2 extraProperties=sonar.sources\=src,modules/*/src\r\nsonar.tests\=test/functional,test/performance,test/unit\r\nsonar.exclusions\=includes/**/*.java 3 lastAnalysisDate=14 136380650293 lastAnalysisDate=1438388786000 4 4 projectKey=josm-plugins 5 serverUrl=http \://donvip.fr/sonar5 serverUrl=https\://josm.openstreetmap.de/sonar 6 6 version=2 -
applications/editors/josm/plugins/opendata/README
r29679 r31677 20 20 - org/apache: three Apache COTS (Apache License 2.0, see LICENSE-2.0.txt) 21 21 - commons/collections: Apache Commons Collections 3.2.1 (used by jOpenDocument) 22 - commons/lang3: Apache Commons Lang 3.1 (stuff related to WordUtils, used by the plugin itself)23 22 - poi: Apache POI 3.7 (Excel format support without styles, formulas and writing capabilities, used by the plugin itself) 24 23 - org/j7zip: J7zip 4.43alpha2 (7z archive read support, LGPL v2.1, see LGPL-2.1.txt) -
applications/editors/josm/plugins/opendata/build.xml
r31655 r31677 8 8 <property name="plugin.canloadatruntime" value="true"/> 9 9 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData"/> 10 <property name="plugin.requires" value=" jts;geotools;utilsplugin2"/>10 <property name="plugin.requires" value="apache-commons;jts;geotools;utilsplugin2"/> 11 11 12 12 <!-- ** include targets that all plugins have in common ** --> … … 14 14 15 15 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> 16 <include name="apache-commons.jar"/> 16 17 <include name="jts.jar"/> 17 18 <include name="geotools.jar"/> … … 19 20 </fileset> 20 21 22 <property name="apache-commons" location="${plugin.dist.dir}/apache-commons.jar"/> 21 23 <property name="jts" location="${plugin.dist.dir}/jts.jar"/> 22 24 <property name="geotools" location="${plugin.dist.dir}/geotools.jar"/> 23 25 24 <!--25 **********************************************************26 ** compile_lang3 - compiles Apache Commons Lang 3 needed classes27 **********************************************************28 -->29 <target name="compile_lang3" depends="init">30 <echo message="compiling Apache Commons Lang 3 ... "/>31 <javac srcdir="includes/org/apache/commons/lang3" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="ISO-8859-1" />32 </target>33 26 <!-- 34 27 ********************************************************** … … 86 79 ********************************************************** 87 80 --> 88 <target name="compile" depends="init, compile_ lang3, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip">81 <target name="compile" depends="init, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip"> 89 82 <echo message="compiling sources for ${plugin.jar} ... "/> 90 83 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8"> … … 92 85 <pathelement path="${plugin.build.dir}"/> 93 86 <pathelement location="${josm}"/> 87 <pathelement location="${apache-commons}"/> 94 88 <pathelement location="${jts}"/> 95 89 <pathelement location="${geotools}"/> -
applications/editors/josm/plugins/photo_geotagging/.classpath
r31204 r31677 4 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> 5 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM- commons-imaging"/>6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/> 7 7 <classpathentry kind="output" path="bin"/> 8 8 </classpath> -
applications/editors/josm/plugins/photo_geotagging/build.xml
r31204 r31677 13 13 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Photo_Geotagging"/> 14 14 <property name="plugin.canloadatruntime" value="true"/> 15 <property name="plugin.requires" value=" commons-imaging"/>15 <property name="plugin.requires" value="apache-commons"/> 16 16 17 17 <!-- ** include targets that all plugins have in common ** --> … … 19 19 20 20 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> 21 <include name=" commons-imaging.jar"/>21 <include name="apache-commons.jar"/> 22 22 </fileset> 23 23
Note:
See TracChangeset
for help on using the changeset viewer.