Changeset 36348 in osm for applications/editors/josm/plugins/geotools/pom.xml
- Timestamp:
- 2024-10-23T15:12:55+02:00 (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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>
Note:
See TracChangeset
for help on using the changeset viewer.