Skip to content

Commit

Permalink
Update plugins and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganwitt committed Jun 5, 2024
1 parent 43d2ef2 commit 45a5353
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 46 deletions.
86 changes: 42 additions & 44 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mavenVersion>3.2.5</mavenVersion>
<jacocoPluginVersion>0.8.10</jacocoPluginVersion>
<javadocPluginVersion>3.5.0</javadocPluginVersion>
<jacocoPluginVersion>0.8.12</jacocoPluginVersion>
<javadocPluginVersion>3.7.0</javadocPluginVersion>
<shortJavaVersion>8</shortJavaVersion>
<!-- these are properties so integration tests can use them -->
<javaVersion>1.${shortJavaVersion}</javaVersion>
<dependencyPluginVersion>3.5.0</dependencyPluginVersion>
<compilerPluginVersion>3.11.0</compilerPluginVersion>
<dependencyPluginVersion>3.6.1</dependencyPluginVersion>
<compilerPluginVersion>3.13.0</compilerPluginVersion>
<resourcesPluginVersion>3.3.1</resourcesPluginVersion>
<junitVersion>4.13.2</junitVersion>
<surefirePluginVersion>3.1.0</surefirePluginVersion>
<pluginPluginVersion>3.9.0</pluginPluginVersion>
<surefirePluginVersion>3.2.5</surefirePluginVersion>
<pluginPluginVersion>3.13.1</pluginPluginVersion>
<!-- this is a property so that site generation can use it -->
<sourcePluginVersion>3.2.1</sourcePluginVersion>
<sourcePluginVersion>3.3.1</sourcePluginVersion>
<!-- these are properties so that site generation and integration tests can use it -->
<groovyGroupId>org.apache.groovy</groovyGroupId>
<groovyVersion>4.0.21</groovyVersion>
Expand Down Expand Up @@ -57,25 +57,13 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.10.2</version>
<version>3.13.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>3.6.0</version>
</dependency>
<dependency>
<!-- fix CVE-2023-37460 from org.apache.maven:maven-archiver -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.8.0</version>
</dependency>
<dependency>
<!-- fix CVE-2023-42503 from org.codehaus.plexus:plexus-archiver -->
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.0</version>
<version>3.6.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
Expand All @@ -86,14 +74,14 @@
<!-- fix CVE-2022-4244 and CVE-2022-4245 from org.apache.maven:maven-artifact -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
<version>4.0.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- fix CVE-2018-10237, CVE-2020-8908, and CVE-2023-2976 from org.apache.maven:maven-core -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
<version>33.2.1-jre</version>
<scope>runtime</scope>
</dependency>
<!-- main groovy support -->
Expand All @@ -119,7 +107,7 @@
<!-- this is to support use of Groovysh (Groovy jars don't include) -->
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -154,13 +142,13 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.3.1</version>
<version>5.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
<version>2.0.13</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -179,7 +167,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.4</version>
<executions>
<execution>
<goals>
Expand All @@ -202,7 +190,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -233,14 +221,14 @@
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.6.2</version>
<version>1.8.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -267,7 +255,7 @@
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>2.1.1</version>
<version>2.2.0</version>
<executions>
<execution>
<goals>
Expand All @@ -279,12 +267,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${pluginPluginVersion}</version>
<configuration>
<goalPrefix>gplus</goalPrefix>
</configuration>
<executions>
<execution>
<id>generate-helpmojo</id>
Expand Down Expand Up @@ -344,12 +335,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.5.1</version>
<version>3.7.0</version>
<configuration>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
Expand Down Expand Up @@ -394,12 +385,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -442,7 +433,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</plugin>
</plugins>
</build>
Expand All @@ -461,7 +452,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -478,12 +469,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-report-plugin</artifactId>
<version>3.10.2</version>
<version>3.13.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.4.3</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -531,22 +522,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.21.0</version>
<version>3.22.0</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.7.3.4</version>
<version>4.8.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.2</version>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.15.0</version>
<version>2.16.2</version>
<reportSets>
<reportSet>
<reports>
Expand Down Expand Up @@ -638,5 +629,12 @@
<system>Github Actions</system>
<url>https://github.com/groovy/GMavenPlus/actions</url>
</ciManagement>
<repositories>
<repository>
<id>maven_central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>

</project>
4 changes: 2 additions & 2 deletions src/it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<properties>
<project.build.sourceEncoding>@project.build.sourceEncoding@</project.build.sourceEncoding>
<commonsLang3Version>3.12.0</commonsLang3Version>
<commonsLang3Version>3.14.0</commonsLang3Version>
<mavenVersion>3.9.7</mavenVersion>
<junit5Version>5.9.3</junit5Version>
<junit5Version>5.10.2</junit5Version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 45a5353

Please sign in to comment.