Skip to content

Commit

Permalink
Update dependencies and Maven plugin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd committed May 29, 2024
1 parent 6f9d70e commit e17c5ec
Showing 1 changed file with 33 additions and 20 deletions.
53 changes: 33 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@
<description>Simple API that allows you to easily parse logs and other files</description>
<url>http://maven.apache.org</url>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand Down Expand Up @@ -48,10 +42,10 @@
</distributionManagement>

<properties>
<junit.version>4.12</junit.version>
<assertj.version>3.9.1</assertj.version>
<common.version>3.7</common.version>
<guava.version>24.0-jre</guava.version>
<junit.version>4.13.2</junit.version>
<assertj.version>3.26.0</assertj.version>
<common.version>3.14.0</common.version>
<guava.version>33.2.0-jre</guava.version>
<named.regex.version>0.2.3</named.regex.version>
<!-- maven -->
<java.version>1.8</java.version>
Expand Down Expand Up @@ -88,7 +82,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
<version>2.0.13</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -113,7 +107,7 @@

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.6.3</version>
<configuration><!-- Default configuration for all reports -->
</configuration>
<executions>
Expand All @@ -131,7 +125,7 @@

<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
<version>2.1.0</version>
<configuration>
<connectionType>developerConnection</connectionType>
<scmVersion>branch-0.1</scmVersion>
Expand All @@ -140,52 +134,71 @@
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<DependencyConvergence />
<requireMavenVersion>
<version>3.9.6</version>
</requireMavenVersion>
</rules>
<failFast>true</failFast>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
</plugins>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.16.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<version>3.6.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<version>3.2.5</version>
<configuration combine.children="append">
<argLine>-Xmx2g -Xms1g</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<version>3.3.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<version>3.3.2</version>
<configuration>
<filesets>
<fileset>
Expand Down Expand Up @@ -260,7 +273,7 @@
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit e17c5ec

Please sign in to comment.