Skip to content

Commit

Permalink
[MINVOKER-366] Require Maven 3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed May 5, 2024
1 parent be7f699 commit 6897d6b
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
</parent>

<artifactId>maven-invoker-plugin</artifactId>
<version>3.6.2-SNAPSHOT</version>
<version>3.7.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>Apache Maven Invoker Plugin</name>
Expand Down Expand Up @@ -62,11 +62,11 @@ under the License.

<properties>
<javaVersion>8</javaVersion>
<mavenVersion>3.2.5</mavenVersion>
<mavenVersion>3.6.3</mavenVersion>
<beanshell-groupId>org.apache-extras.beanshell</beanshell-groupId>
<beanshell-artifactId>bsh</beanshell-artifactId>
<beanshell-version>2.0b6</beanshell-version>
<project.build.outputTimestamp>2024-03-27T06:01:10Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2024-05-05T11:44:43Z</project.build.outputTimestamp>
<groovy-version>4.0.21</groovy-version>
</properties>

Expand Down Expand Up @@ -146,9 +146,9 @@ under the License.
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-util</artifactId>
<version>1.0.0.v20140518</version>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<version>1.4.1</version>
</dependency>

<!-- shared -->
Expand All @@ -168,7 +168,15 @@ under the License.
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>*</artifactId>
<artifactId>maven-artifact</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand Down

0 comments on commit 6897d6b

Please sign in to comment.