Skip to content

Commit 14c2823

Browse files
committed
Update maven plugins
1 parent 2bf7114 commit 14c2823

File tree

1 file changed

+39
-24
lines changed

1 file changed

+39
-24
lines changed

pom.xml

Lines changed: 39 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@
8787
<plugin>
8888
<groupId>org.apache.maven.plugins</groupId>
8989
<artifactId>maven-clean-plugin</artifactId>
90-
<version>3.1.0</version>
90+
<version>3.2.0</version>
9191
</plugin>
9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-site-plugin</artifactId>
95-
<version>3.7.1</version>
95+
<version>3.12.1</version>
9696
</plugin>
9797
<plugin>
9898
<groupId>org.codehaus.groovy</groupId>
@@ -124,25 +124,39 @@
124124
<plugin>
125125
<groupId>org.apache.maven.plugins</groupId>
126126
<artifactId>maven-surefire-plugin</artifactId>
127-
<version>2.22.1</version>
127+
<version>3.0.0-M7</version>
128128
<configuration>
129129
<forkMode>once</forkMode>
130-
<argLine>-Xms512m -Xmx1024m</argLine>
130+
<argLine>@{argLine} -Xms512m -Xmx1024m</argLine>
131131
<systemPropertyVariables>
132132
<org.geotools.referencing.forceXY>true</org.geotools.referencing.forceXY>
133133
</systemPropertyVariables>
134134
<enableAssertions>false</enableAssertions>
135135
</configuration>
136136
</plugin>
137137
<plugin>
138-
<groupId>org.codehaus.mojo</groupId>
139-
<artifactId>cobertura-maven-plugin</artifactId>
140-
<version>2.7</version>
138+
<groupId>org.jacoco</groupId>
139+
<artifactId>jacoco-maven-plugin</artifactId>
140+
<version>0.8.8</version>
141+
<executions>
142+
<execution>
143+
<goals>
144+
<goal>prepare-agent</goal>
145+
</goals>
146+
</execution>
147+
<execution>
148+
<id>report</id>
149+
<phase>test</phase>
150+
<goals>
151+
<goal>report</goal>
152+
</goals>
153+
</execution>
154+
</executions>
141155
</plugin>
142156
<plugin>
143157
<groupId>org.apache.maven.plugins</groupId>
144158
<artifactId>maven-jar-plugin</artifactId>
145-
<version>3.2.0</version>
159+
<version>3.3.0</version>
146160
<configuration>
147161
<archive>
148162
<manifest>
@@ -154,7 +168,7 @@
154168
</plugin>
155169
<plugin>
156170
<artifactId>maven-assembly-plugin</artifactId>
157-
<version>3.3.0</version>
171+
<version>3.4.2</version>
158172
<configuration>
159173
<descriptors>
160174
<descriptor>src/main/assembly/dir.xml</descriptor>
@@ -219,7 +233,7 @@
219233
<plugin>
220234
<groupId>org.apache.maven.plugins</groupId>
221235
<artifactId>maven-resources-plugin</artifactId>
222-
<version>3.2.0</version>
236+
<version>3.3.0</version>
223237
<executions>
224238
<execution>
225239
<id>copy-asciidoc-resources</id>
@@ -318,17 +332,17 @@
318332
<plugin>
319333
<groupId>org.apache.maven.plugins</groupId>
320334
<artifactId>maven-antrun-plugin</artifactId>
321-
<version>1.8</version>
335+
<version>3.1.0</version>
322336
</plugin>
323337
<plugin>
324338
<groupId>org.apache.maven.plugins</groupId>
325339
<artifactId>maven-assembly-plugin</artifactId>
326-
<version>3.1.0</version>
340+
<version>3.4.2</version>
327341
</plugin>
328342
<plugin>
329343
<groupId>org.apache.maven.plugins</groupId>
330344
<artifactId>maven-dependency-plugin</artifactId>
331-
<version>3.1.1</version>
345+
<version>3.3.0</version>
332346
</plugin>
333347
<plugin>
334348
<groupId>org.apache.maven.plugins</groupId>
@@ -341,25 +355,26 @@
341355
<reporting>
342356
<plugins>
343357
<plugin>
344-
<groupId>org.codehaus.mojo</groupId>
345-
<artifactId>cobertura-maven-plugin</artifactId>
346-
<version>2.7</version>
347-
<configuration>
348-
<formats>
349-
<format>html</format>
350-
<format>xml</format>
351-
</formats>
352-
</configuration>
358+
<groupId>org.jacoco</groupId>
359+
<artifactId>jacoco-maven-plugin</artifactId>
360+
<version>0.8.8</version>
361+
<reportSets>
362+
<reportSet>
363+
<reports>
364+
<report>report</report>
365+
</reports>
366+
</reportSet>
367+
</reportSets>
353368
</plugin>
354369
<plugin>
355370
<groupId>org.apache.maven.plugins</groupId>
356371
<artifactId>maven-surefire-report-plugin</artifactId>
357-
<version>2.22.0</version>
372+
<version>3.0.0-M7</version>
358373
</plugin>
359374
<plugin>
360375
<groupId>org.codehaus.mojo</groupId>
361376
<artifactId>versions-maven-plugin</artifactId>
362-
<version>2.7</version>
377+
<version>2.12.0</version>
363378
</plugin>
364379
</plugins>
365380
</reporting>

0 commit comments

Comments
 (0)