Skip to content

Commit 394481a

Browse files
ahornaceVladimir Kotal
authored andcommitted
Update maven plugins
1 parent a2cedb8 commit 394481a

File tree

4 files changed

+25
-11
lines changed

4 files changed

+25
-11
lines changed

opengrok-indexer/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Portions Copyright (c) 2020-2020, Lubos Kosco <[email protected]>.
222222
<dependency>
223223
<groupId>org.eclipse.jgit</groupId>
224224
<artifactId>org.eclipse.jgit</artifactId>
225-
<version>5.11.0.202103091610-r</version>
225+
<version>5.11.1.202105131744-r</version>
226226
</dependency>
227227
</dependencies>
228228

@@ -324,7 +324,7 @@ Portions Copyright (c) 2020-2020, Lubos Kosco <[email protected]>.
324324
<plugin>
325325
<groupId>org.apache.maven.plugins</groupId>
326326
<artifactId>maven-jar-plugin</artifactId>
327-
<version>3.0.2</version>
327+
<version>3.2.0</version>
328328
<configuration>
329329
<archive>
330330
<manifest>
@@ -347,7 +347,7 @@ Portions Copyright (c) 2020-2020, Lubos Kosco <[email protected]>.
347347
<plugin>
348348
<groupId>org.apache.maven.plugins</groupId>
349349
<artifactId>maven-antrun-plugin</artifactId>
350-
<version>1.8</version>
350+
<version>3.0.0</version>
351351
<executions>
352352
<execution>
353353
<id>build-config-files</id>

opengrok-web/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
5353
<groupId>${project.groupId}</groupId>
5454
<artifactId>opengrok</artifactId>
5555
<version>${project.version}</version>
56+
<classifier>tests</classifier>
5657
<type>test-jar</type>
5758
<scope>test</scope>
5859
</dependency>

plugins/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Portions Copyright (c) 2020, Chris Fraire <[email protected]>.
4747
<groupId>${project.groupId}</groupId>
4848
<artifactId>opengrok</artifactId>
4949
<version>${project.version}</version>
50+
<classifier>tests</classifier>
5051
<type>test-jar</type>
5152
<scope>test</scope>
5253
</dependency>

pom.xml

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
6161

6262
<properties>
6363
<lucene.version>8.8.2</lucene.version>
64-
<mavenjavadocplugin.version>3.0.1</mavenjavadocplugin.version>
64+
<mavenjavadocplugin.version>3.2.0</mavenjavadocplugin.version>
6565
<!-- The following changed syntax from e.g. 1.8 to 11. -->
6666
<compileSource>11</compileSource>
6767
<compileTarget>11</compileTarget>
@@ -72,7 +72,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
7272
<jackson.version>2.11.3</jackson.version>
7373
<junit.version>5.7.1</junit.version>
7474
<hamcrest.version>2.2</hamcrest.version>
75-
<maven-surefire.version>2.22.2</maven-surefire.version>
75+
<maven-surefire.version>3.0.0-M5</maven-surefire.version>
7676
<apache-commons-lang3.version>3.12.0</apache-commons-lang3.version>
7777
<micrometer.version>1.6.6</micrometer.version>
7878
<mockito.version>3.9.0</mockito.version>
@@ -209,7 +209,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
209209
<plugin>
210210
<groupId>org.apache.maven.plugins</groupId>
211211
<artifactId>maven-enforcer-plugin</artifactId>
212-
<version>3.0.0-M2</version>
212+
<version>3.0.0-M3</version>
213213
<executions>
214214
<execution>
215215
<id>enforce-maven</id>
@@ -278,7 +278,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
278278
<plugin>
279279
<groupId>org.jacoco</groupId>
280280
<artifactId>jacoco-maven-plugin</artifactId>
281-
<version>0.8.5</version>
281+
<version>0.8.7</version>
282282
<executions>
283283
<!-- Prepare execution with Surefire -->
284284
<execution>
@@ -348,7 +348,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
348348
</plugin>
349349
<plugin>
350350
<artifactId>maven-project-info-reports-plugin</artifactId>
351-
<version>2.9</version>
351+
<version>3.1.2</version>
352352
</plugin>
353353
<plugin>
354354
<groupId>org.owasp</groupId>
@@ -366,13 +366,25 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
366366
</execution>
367367
</executions>
368368
</plugin>
369+
<plugin>
370+
<groupId>org.apache.maven.plugins</groupId>
371+
<artifactId>maven-site-plugin</artifactId>
372+
<version>3.9.1</version>
373+
</plugin>
369374
</plugins>
370375
<pluginManagement>
371376
<plugins>
372377
<plugin>
373378
<groupId>org.apache.maven.plugins</groupId>
374379
<artifactId>maven-checkstyle-plugin</artifactId>
375380
<version>3.1.2</version>
381+
<dependencies>
382+
<dependency>
383+
<groupId>com.puppycrawl.tools</groupId>
384+
<artifactId>checkstyle</artifactId>
385+
<version>8.42</version>
386+
</dependency>
387+
</dependencies>
376388
<executions>
377389
<execution>
378390
<id>checkstyle</id>
@@ -441,7 +453,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
441453
<plugin>
442454
<groupId>com.github.spotbugs</groupId>
443455
<artifactId>spotbugs-maven-plugin</artifactId>
444-
<version>4.1.3</version>
456+
<version>4.2.3</version>
445457
<configuration>
446458
<xmlOutput>true</xmlOutput>
447459
<includeFilterFile>dev/findbugs_filter.xml</includeFilterFile>
@@ -455,7 +467,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
455467
<plugin>
456468
<groupId>org.apache.maven.plugins</groupId>
457469
<artifactId>maven-pmd-plugin</artifactId>
458-
<version>3.13.0</version>
470+
<version>3.14.0</version>
459471
<reportSets>
460472
<reportSet>
461473
<reports>
@@ -504,7 +516,7 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
504516
<plugin>
505517
<groupId>org.apache.maven.plugins</groupId>
506518
<artifactId>maven-jxr-plugin</artifactId>
507-
<version>2.5</version>
519+
<version>3.1.1</version>
508520
</plugin>
509521
</plugins>
510522
</reporting>

0 commit comments

Comments
 (0)