|
31 | 31 | <locationtech-jts.version>1.20.0</locationtech-jts.version> |
32 | 32 | <networknt-validator-version>1.5.6</networknt-validator-version> |
33 | 33 | <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
| 34 | + <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version> |
34 | 35 | <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
35 | 36 | <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> |
36 | 37 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
|
70 | 71 | <groupId>org.apache.maven.plugins</groupId> |
71 | 72 | <artifactId>maven-resources-plugin</artifactId> |
72 | 73 | <version>${maven-resources-plugin.version}</version> |
73 | | - |
74 | 74 | <configuration> |
75 | 75 | <encoding>UTF-8</encoding> |
76 | 76 | </configuration> |
|
117 | 117 | </execution> |
118 | 118 | </executions> |
119 | 119 | </plugin> |
120 | | - <!-- |
| 120 | + |
121 | 121 | <plugin> |
122 | 122 | <artifactId>maven-deploy-plugin</artifactId> |
123 | 123 | <version>${maven-deploy-plugin.version}</version> |
|
131 | 131 | </execution> |
132 | 132 | </executions> |
133 | 133 | </plugin> |
134 | | - --> |
| 134 | + |
135 | 135 | <plugin> |
136 | 136 | <groupId>org.apache.maven.plugins</groupId> |
137 | 137 | <artifactId>maven-gpg-plugin</artifactId> |
|
159 | 159 | </configuration> |
160 | 160 | </plugin> |
161 | 161 |
|
162 | | - <!-- |
163 | | - <plugin> |
164 | | - <groupId>org.apache.maven.plugins</groupId> |
165 | | - <artifactId>maven-release-plugin</artifactId> |
166 | | - <version>${maven-release-plugin.version}</version> |
167 | | - <configuration> |
168 | | - <localCheckout>true</localCheckout> |
169 | | - <pushChanges>false</pushChanges> |
170 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
171 | | - <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> |
172 | | - </configuration> |
173 | | - <dependencies> |
174 | | - <dependency> |
175 | | - <groupId>org.apache.maven.scm</groupId> |
176 | | - <artifactId>maven-scm-provider-gitexe</artifactId> |
177 | | - <version>1.9.4</version> |
178 | | - </dependency> |
179 | | - </dependencies> |
180 | | - </plugin> |
181 | | - --> |
182 | | - |
183 | 162 | <plugin> |
184 | 163 | <groupId>org.jacoco</groupId> |
185 | 164 | <artifactId>jacoco-maven-plugin</artifactId> |
|
191 | 170 | <goal>prepare-agent</goal> |
192 | 171 | </goals> |
193 | 172 | </execution> |
| 173 | + <execution> |
| 174 | + <id>report</id> |
| 175 | + <phase>prepare-package</phase> |
| 176 | + <goals> |
| 177 | + <goal>report</goal> |
| 178 | + </goals> |
| 179 | + </execution> |
194 | 180 | </executions> |
195 | 181 | </plugin> |
196 | 182 |
|
|
209 | 195 | </executions> |
210 | 196 | </plugin> |
211 | 197 |
|
| 198 | + <plugin> |
| 199 | + <groupId>org.apache.maven.plugins</groupId> |
| 200 | + <artifactId>maven-dependency-plugin</artifactId> |
| 201 | + <version>${maven-dependency-plugin.version}</version> |
| 202 | + <executions> |
| 203 | + <execution> |
| 204 | + <id>analyze-report</id> |
| 205 | + <phase>package</phase> |
| 206 | + <goals> |
| 207 | + <goal>analyze-report</goal> |
| 208 | + </goals> |
| 209 | + <configuration> |
| 210 | + <outputDirectory>${project.build.directory}/dependency-report</outputDirectory> |
| 211 | + </configuration> |
| 212 | + </execution> |
| 213 | + </executions> |
| 214 | + </plugin> |
212 | 215 | </plugins> |
213 | 216 | </build> |
214 | 217 |
|
|
234 | 237 | </dependency> |
235 | 238 |
|
236 | 239 | <!-- Dependencies for Geopoint/Geojson Fields --> |
237 | | - <dependency> |
238 | | - <groupId>org.geotools</groupId> |
239 | | - <artifactId>gt-main</artifactId> |
240 | | - <version>${geotools.version}</version> |
241 | | - <exclusions> |
242 | | - <exclusion> |
243 | | - <groupId>org.eclipse.emf</groupId> |
244 | | - <artifactId>org.eclipse.emf.common</artifactId> |
245 | | - </exclusion> |
246 | | - <exclusion> |
247 | | - <groupId>org.geotools</groupId> |
248 | | - <artifactId>gt-http</artifactId> |
249 | | - </exclusion> |
250 | | - </exclusions> |
251 | | - </dependency> |
252 | | - <dependency> |
253 | | - <groupId>org.geotools</groupId> |
254 | | - <artifactId>gt-api</artifactId> |
255 | | - <version>${geotools.version}</version> |
256 | | - <exclusions> |
257 | | - <exclusion> |
258 | | - <groupId>org.eclipse.emf</groupId> |
259 | | - <artifactId>org.eclipse.emf.common</artifactId> |
260 | | - </exclusion> |
261 | | - </exclusions> |
262 | | - </dependency> |
263 | | - <dependency> |
264 | | - <groupId>org.geotools</groupId> |
265 | | - <artifactId>gt-metadata</artifactId> |
266 | | - <version>${geotools.version}</version> |
267 | | - <exclusions> |
268 | | - <exclusion> |
269 | | - <groupId>org.eclipse.emf</groupId> |
270 | | - <artifactId>org.eclipse.emf.common</artifactId> |
271 | | - </exclusion> |
272 | | - <exclusion> |
273 | | - <groupId>org.geotools.ogc</groupId> |
274 | | - <artifactId>net.opengis.ows</artifactId> |
275 | | - </exclusion> |
276 | | - </exclusions> |
277 | | - </dependency> |
278 | 240 | <dependency> |
279 | 241 | <groupId>org.geotools</groupId> |
280 | 242 | <artifactId>gt-referencing</artifactId> |
|
343 | 305 | <!-- Unit Testing --> |
344 | 306 | <dependency> |
345 | 307 | <groupId>org.junit.jupiter</groupId> |
346 | | - <artifactId>junit-jupiter-engine</artifactId> |
| 308 | + <artifactId>junit-jupiter-api</artifactId> |
347 | 309 | <version>${junit.version}</version> |
348 | 310 | <scope>test</scope> |
349 | 311 | </dependency> |
|
0 commit comments