Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 7da2a98

Browse files
committed
Require Maven 3.2.5
1 parent 977d993 commit 7da2a98

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

plexus-component-metadata/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,17 @@
3939
<dependency>
4040
<groupId>org.apache.maven</groupId>
4141
<artifactId>maven-plugin-api</artifactId>
42+
<scope>provided</scope>
4243
</dependency>
4344
<dependency>
4445
<groupId>org.apache.maven</groupId>
4546
<artifactId>maven-model</artifactId>
47+
<scope>provided</scope>
4648
</dependency>
4749
<dependency>
4850
<groupId>org.apache.maven</groupId>
4951
<artifactId>maven-core</artifactId>
52+
<scope>provided</scope>
5053
</dependency>
5154
<dependency>
5255
<groupId>org.ow2.asm</groupId>

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<classWorldsVersion>2.6.0</classWorldsVersion>
4646
<plexusUtilsVersion>3.1.1</plexusUtilsVersion>
4747
<xbeanReflectVersion>3.7</xbeanReflectVersion>
48+
<mavenVersion>3.2.5</mavenVersion>
4849
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4950
<javaVersion>8</javaVersion>
5051
</properties>
@@ -94,23 +95,22 @@
9495
<dependency>
9596
<groupId>org.apache.maven</groupId>
9697
<artifactId>maven-plugin-api</artifactId>
97-
<version>3.0</version>
98+
<version>${mavenVersion}</version>
9899
</dependency>
99100
<dependency>
100101
<groupId>org.apache.maven</groupId>
101102
<artifactId>maven-model</artifactId>
102-
<version>3.0</version>
103+
<version>${mavenVersion}</version>
103104
</dependency>
104105
<dependency>
105106
<groupId>org.apache.maven</groupId>
106107
<artifactId>maven-core</artifactId>
107-
<version>3.0</version>
108+
<version>${mavenVersion}</version>
108109
</dependency>
109110
<dependency>
110111
<groupId>junit</groupId>
111112
<artifactId>junit</artifactId>
112-
<version>4.13.1</version>
113-
<scope>provided</scope>
113+
<version>4.13.2</version>
114114
</dependency>
115115
</dependencies>
116116
</dependencyManagement>

0 commit comments

Comments
 (0)