Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Require Maven 3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Dec 22, 2021
1 parent 977d993 commit 7da2a98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions plexus-component-metadata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,17 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<classWorldsVersion>2.6.0</classWorldsVersion>
<plexusUtilsVersion>3.1.1</plexusUtilsVersion>
<xbeanReflectVersion>3.7</xbeanReflectVersion>
<mavenVersion>3.2.5</mavenVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javaVersion>8</javaVersion>
</properties>
Expand Down Expand Up @@ -94,23 +95,22 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0</version>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.0</version>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.0</version>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>provided</scope>
<version>4.13.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 7da2a98

Please sign in to comment.