Skip to content

Commit

Permalink
Update all Maven plugins and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
greysoft committed Sep 2, 2022
1 parent 62f31d1 commit faf7f3e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright 2010-2021 Yusef Badri - All rights reserved.
Copyright 2010-2022 Yusef Badri - All rights reserved.
This POM is distributed under the terms of the GNU Affero General Public License, Version 3 (AGPLv3).
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand All @@ -14,7 +14,7 @@
<description>Root POM with common build defs</description>
<properties>
<java.version>1.8</java.version>
<grey.version.slf4j>1.7.30</grey.version.slf4j>
<grey.version.slf4j>1.7.36</grey.version.slf4j>
<grey.version.commonslog>1.2</grey.version.commonslog>
<grey.manifest.vendor>Grey Software</grey.manifest.vendor>
<grey.manifest.builder>Grey Build Manager</grey.manifest.builder>
Expand All @@ -28,13 +28,13 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.7.7</version>
<version>4.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -44,7 +44,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<pomElements>
Expand Down Expand Up @@ -77,7 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.2</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
Expand All @@ -98,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.2</version>
<version>3.3.0</version>
<configuration>
<!-- serves as input to copy goal - copies current JAR -->
<artifactItems>
Expand All @@ -116,7 +116,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<executions>
<execution>
<id>generate-jar</id>
Expand All @@ -129,7 +129,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>generate-jar</id>
Expand All @@ -142,12 +142,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -171,7 +171,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.10.1</version>
<configuration>
<!-- NB: ${java.specification.version} would specify the current JDK -->
<source>${java.version}</source>
Expand All @@ -189,7 +189,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.2</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
Expand Down Expand Up @@ -229,7 +229,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version>
<version>0.8.8</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit faf7f3e

Please sign in to comment.