Skip to content

Commit

Permalink
Batch update to plugin
Browse files Browse the repository at this point in the history
Update parent POM, dependencies and
sort out resolver-util.
  • Loading branch information
cstamas committed Dec 29, 2023
1 parent fd33352 commit 57846a7
Showing 1 changed file with 39 additions and 9 deletions.
48 changes: 39 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>39</version>
<version>41</version>
<relativePath />
</parent>

Expand All @@ -36,7 +36,7 @@ under the License.
execution is successful, and optionally can verify the output generated from a given project execution.</description>

<prerequisites>
<maven>${mavenVersion}</maven>
<maven>${mavenMinVersion}</maven>
</prerequisites>

<scm>
Expand All @@ -62,12 +62,13 @@ under the License.

<properties>
<javaVersion>8</javaVersion>
<mavenVersion>3.2.5</mavenVersion>
<mavenMinVersion>3.2.5</mavenMinVersion>
<mavenVersion>3.9.6</mavenVersion>
<beanshell-groupId>org.apache-extras.beanshell</beanshell-groupId>
<beanshell-artifactId>bsh</beanshell-artifactId>
<beanshell-version>2.0b6</beanshell-version>
<project.build.outputTimestamp>2023-06-11T17:18:10Z</project.build.outputTimestamp>
<groovy-version>4.0.12</groovy-version>
<groovy-version>4.0.17</groovy-version>
</properties>

<dependencyManagement>
Expand All @@ -81,7 +82,7 @@ under the License.
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
<version>1.16.0</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
Expand All @@ -91,7 +92,7 @@ under the License.
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
<version>2.15.1</version>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
Expand Down Expand Up @@ -145,6 +146,19 @@ under the License.
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
<version>1.9.18</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<version>1.9.18</version>
<!-- To work in Maven versions older than 3.9.0 -->
<scope>compile</scope>
</dependency>

<!-- shared -->
<dependency>
Expand All @@ -169,6 +183,12 @@ under the License.
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>1.12.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -209,7 +229,7 @@ under the License.
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.14.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -219,7 +239,7 @@ under the License.
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-interpolation</artifactId>
<version>1.26</version>
<version>1.27</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -235,7 +255,7 @@ under the License.
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.4.1</version>
<version>3.4.2</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -369,6 +389,16 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>none</proc>
<compilerArgs>
<compilerArg>-Xlint:deprecation</compilerArg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 57846a7

Please sign in to comment.