Changeset 36348 in osm for applications/editors
- Timestamp:
- 2024-10-23T15:12:55+02:00 (2 months ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 12 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside/build.xml
r36228 r36348 20 20 </fileset> 21 21 <target name="pre-compile" depends="fetch_dependencies"> 22 <!-- include fetch_dependencies task -->23 <ivy:retrieve conf="provided,default"/>24 <!--<ivy:cachepath pathid="compile.path" conf="default,provided"/>-->25 </target>26 <target name="build-jar">27 <ivy:resolve/>28 <ivy:cachefileset setid="ivy.default.path" conf="default"/>29 <jar destfile="${basedir}/dependencies.jar" duplicate="preserve" level="0">30 <zipgroupfileset refid="ivy.default.path"/>31 </jar>32 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifest="${manifest}" manifestencoding="UTF-8" duplicate="preserve" level="9" excludes="${basedir}/dependencies.jar">33 <zipfileset src="${basedir}/dependencies.jar" excludes="META-INF/maven/* META-INF/DEPENDENCIES META-INF/LICENSE META-INF/NOTICE META-INF/*.RSA META-INF/*.SF module-info.class"/>34 </jar>35 <delete file="${basedir}/dependencies.jar"/>36 22 </target> 37 23 </project> -
applications/editors/josm/plugins/OsmInspectorPlugin/build.xml
r36176 r36348 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1 4153"/>7 <property name="plugin.main.version" value="19044"/> 8 8 9 9 <property name="plugin.author" value="Nikhil Shirahatti"/> -
applications/editors/josm/plugins/OsmInspectorPlugin/pom.xml
r36325 r36348 16 16 <properties> 17 17 <plugin.src.dir>src</plugin.src.dir> 18 <plugin.main.version>1 4153</plugin.main.version>18 <plugin.main.version>19044</plugin.main.version> 19 19 <plugin.author>Nikhil Shirahatti</plugin.author> 20 20 <plugin.class>org.openstreetmap.josm.plugins.osminspector.OsmInspectorPlugin</plugin.class> -
applications/editors/josm/plugins/ejml/build.xml
r36176 r36348 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 0580"/>6 <property name="plugin.main.version" value="19044"/> 7 7 8 8 <property name="plugin.author" value="Don-vip"/> -
applications/editors/josm/plugins/ejml/pom.xml
r36325 r36348 17 17 <properties> 18 18 <plugin.src.dir>src</plugin.src.dir> 19 <plugin.main.version>1 0580</plugin.main.version>19 <plugin.main.version>19044</plugin.main.version> 20 20 <plugin.author>Don-vip</plugin.author> 21 21 <plugin.class>org.openstreetmap.josm.plugins.ejml.EjmlPlugin</plugin.class> -
applications/editors/josm/plugins/flatlaf/build.xml
r35703 r36348 2 2 <project name="flatlaf" default="dist" basedir="."> 3 3 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 4 <property name="plugin.main.version" value="1 6974"/>4 <property name="plugin.main.version" value="19044"/> 5 5 6 6 <property name="plugin.author" value="simon04"/> -
applications/editors/josm/plugins/flatlaf/pom.xml
r36325 r36348 17 17 <properties> 18 18 <plugin.src.dir>src</plugin.src.dir> 19 <plugin.main.version>1 6974</plugin.main.version>19 <plugin.main.version>19044</plugin.main.version> 20 20 21 21 <plugin.author>simon04</plugin.author> -
applications/editors/josm/plugins/geotools/pom.xml
r36325 r36348 56 56 <scope>provided</scope> 57 57 </dependency> 58 <!-- FIXME: Check excludes -->59 58 <dependency> 60 59 <groupId>org.geotools</groupId> 61 60 <artifactId>gt-coverage</artifactId> 62 61 <version>${geotools.version}</version> 62 <exclusions> 63 <exclusion> <!-- Unnecessary --> 64 <groupId>com.github.spotbugs</groupId> 65 <artifactId>spotbugs-annotations</artifactId> 66 </exclusion> 67 <exclusion> <!-- Not needed in 22.0 according to lib in svn --> 68 <groupId>com.google.guava</groupId> 69 <artifactId>guava</artifactId> 70 </exclusion> 71 <exclusion> <!-- From JTS plugin --> 72 <groupId>org.locationtech.jts</groupId> 73 <artifactId>jts-core</artifactId> 74 </exclusion> 75 <exclusion> <!-- From apache-commons plugin --> 76 <groupId>commons-io</groupId> 77 <artifactId>commons-io</artifactId> 78 </exclusion> 79 </exclusions> 63 80 </dependency> 64 81 <dependency> … … 66 83 <artifactId>gt-coverage-api</artifactId> 67 84 <version>${geotools.version}</version> 85 <exclusions> 86 <exclusion> <!-- Not needed in 22.0 according to lib in svn --> 87 <groupId>org.geotools</groupId> 88 <artifactId>gt-imagemosaic</artifactId> 89 </exclusion> 90 <exclusion> <!-- Not needed in 22.0 according to lib in svn --> 91 <groupId>net.sourceforge.hatbox</groupId> 92 <artifactId>hatbox</artifactId> 93 </exclusion> 94 <exclusion> <!-- From JAXB plugin (Eclipse JAXB 2.3.2 at time of writing) JAXB 3.0 uses jakarta.xml.bind/com.sun.xml.bind --> 95 <groupId>javax.xml.bind</groupId> 96 <artifactId>jaxb-api</artifactId> 97 </exclusion> 98 <exclusion> <!-- From JAXB plugin (Eclipse JAXB 2.3.2 at time of writing) JAXB 3.0 uses jakarta.xml.bind/com.sun.xml.bind --> 99 <groupId>org.glassfish.jaxb</groupId> 100 <artifactId>jaxb-runtime</artifactId> 101 </exclusion> 102 <exclusion> <!-- From JTS plugin --> 103 <groupId>org.locationtech.jts</groupId> 104 <artifactId>jts-core</artifactId> 105 </exclusion> 106 <exclusion> <!-- From apache-commons plugin --> 107 <groupId>commons-io</groupId> 108 <artifactId>commons-io</artifactId> 109 </exclusion> 110 <exclusion> <!-- From apache-commons plugin --> 111 <groupId>org.apache.commons</groupId> 112 <artifactId>commons-lang3</artifactId> 113 </exclusion> 114 </exclusions> 68 115 </dependency> 69 116 <dependency> … … 86 133 <artifactId>gt-main</artifactId> 87 134 <version>${geotools.version}</version> 135 <exclusions> 136 <exclusion> <!-- From EJML plugin --> 137 <groupId>org.ejml</groupId> 138 <artifactId>*</artifactId> 139 </exclusion> 140 <exclusion> <!-- From JTS plugin --> 141 <groupId>org.locationtech.jts</groupId> 142 <artifactId>jts-core</artifactId> 143 </exclusion> 144 <exclusion> <!-- From apache-commons plugin --> 145 <groupId>org.apache.commons</groupId> 146 <artifactId>commons-text</artifactId> 147 </exclusion> 148 <exclusion> <!-- From jackson plugin --> 149 <groupId>com.fasterxml.jackson.core</groupId> 150 <artifactId>jackson-core</artifactId> 151 </exclusion> 152 </exclusions> 88 153 </dependency> 89 154 <dependency> … … 91 156 <artifactId>gt-metadata</artifactId> 92 157 <version>${geotools.version}</version> 158 <exclusions> 159 <exclusion> <!-- ecore is rather large (1.3M) --> 160 <groupId>org.eclipse.emf</groupId> 161 <artifactId>*</artifactId> 162 </exclusion> 163 <exclusion> <!-- From apache-commons plugin --> 164 <groupId>org.apache.commons</groupId> 165 <artifactId>commons-lang3</artifactId> 166 </exclusion> 167 </exclusions> 93 168 </dependency> 94 169 <dependency> … … 96 171 <artifactId>gt-api</artifactId> 97 172 <version>${geotools.version}</version> 173 <exclusions> 174 <exclusion> 175 <groupId>org.locationtech.jts</groupId> 176 <artifactId>core</artifactId> 177 </exclusion> 178 </exclusions> 98 179 </dependency> 99 180 <dependency> … … 101 182 <artifactId>gt-referencing</artifactId> 102 183 <version>${geotools.version}</version> 184 <exclusions> 185 <exclusion> <!-- From EJML plugin --> 186 <groupId>org.ejml</groupId> 187 <artifactId>*</artifactId> 188 </exclusion> 189 </exclusions> 103 190 </dependency> 104 191 <dependency> … … 111 198 <artifactId>gt-geopkg</artifactId> 112 199 <version>${geotools.version}</version> 200 <exclusions> 201 <exclusion> <!-- ecore is rather large (1.3M) --> 202 <groupId>org.eclipse.emf</groupId> 203 <artifactId>*</artifactId> 204 </exclusion> 205 <exclusion> <!-- From apache-commons plugin --> 206 <groupId>org.apache.commons</groupId> 207 <artifactId>commons-collections4</artifactId> 208 </exclusion> 209 <exclusion> <!-- From apache-commons plugin --> 210 <groupId>commons-io</groupId> 211 <artifactId>commons-io</artifactId> 212 </exclusion> 213 </exclusions> 113 214 </dependency> 114 215 </dependencies> -
applications/editors/josm/plugins/jts/build.xml
r35976 r36348 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 2164"/>6 <property name="plugin.main.version" value="19044"/> 7 7 8 8 <property name="plugin.author" value="Josh Doe <josh@joshdoe.com>"/> -
applications/editors/josm/plugins/jts/pom.xml
r36325 r36348 17 17 <properties> 18 18 <plugin.src.dir>src</plugin.src.dir> 19 <plugin.main.version>1 2164</plugin.main.version>19 <plugin.main.version>19044</plugin.main.version> 20 20 21 21 <plugin.author>Josh Doe <josh@joshdoe.com></plugin.author> … … 25 25 <plugin.canloadatruntime>true</plugin.canloadatruntime> 26 26 <plugin.stage>10</plugin.stage> 27 <jts.version>1.19.0</jts.version> 27 28 </properties> 28 29 <dependencies> … … 30 31 <groupId>org.locationtech.jts</groupId> 31 32 <artifactId>jts-core</artifactId> 32 <version> 1.19.0</version>33 <version>${jts.version}</version> 33 34 <scope>compile</scope> 34 35 </dependency> … … 36 37 <groupId>org.locationtech.jts.io</groupId> 37 38 <artifactId>jts-io-common</artifactId> 38 <version> 1.19.0</version>39 <version>${jts.version}</version> 39 40 <scope>compile</scope> 40 41 </dependency> -
applications/editors/josm/plugins/pbf/build.xml
r35825 r36348 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="1 7749"/>5 <property name="plugin.main.version" value="19044"/> 6 6 7 7 <property name="plugin.author" value="Don-vip"/> -
applications/editors/josm/plugins/pbf/pom.xml
r36340 r36348 17 17 <properties> 18 18 <plugin.src.dir>src</plugin.src.dir> 19 <plugin.main.version>1 7749</plugin.main.version>19 <plugin.main.version>19044</plugin.main.version> 20 20 <plugin.author>Don-vip</plugin.author> 21 21 <plugin.class>org.openstreetmap.josm.plugins.pbf.PbfPlugin</plugin.class> -
applications/editors/josm/plugins/pdfimport/build.xml
r35494 r36348 4 4 <property name="commit.message" value="bug fix"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 4153"/>6 <property name="plugin.main.version" value="19044"/> 7 7 <property name="plugin.canloadatruntime" value="true"/> 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/pdfimport/pom.xml
r36325 r36348 18 18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 19 19 <plugin.src.dir>src</plugin.src.dir> 20 <plugin.main.version>1 4153</plugin.main.version>20 <plugin.main.version>19044</plugin.main.version> 21 21 <plugin.canloadatruntime>true</plugin.canloadatruntime> 22 22 <plugin.author>extropy</plugin.author>
Note:
See TracChangeset
for help on using the changeset viewer.