Skip to content

Commit 9441f26

Browse files
committed
Move Maven Plugin's Maven dependencies into provided scope
Closes gh-378
1 parent c2a1cc9 commit 9441f26

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<junit.version>5.8.1</junit.version>
5151
<javassist.version>3.21.0-GA</javassist.version>
5252
<picocontainer.version>1.2</picocontainer.version>
53+
<plexus-utils.version>3.5.1</plexus-utils.version>
5354
<system-rules.version>1.16.0</system-rules.version>
5455
<testcontainers.version>1.16.0</testcontainers.version>
5556
<trove4j.version>3.0.3</trove4j.version>
@@ -589,6 +590,11 @@
589590
<artifactId>picocontainer</artifactId>
590591
<version>${picocontainer.version}</version>
591592
</dependency>
593+
<dependency>
594+
<groupId>org.codehaus.plexus</groupId>
595+
<artifactId>plexus-utils</artifactId>
596+
<version>${plexus-utils.version}</version>
597+
</dependency>
592598
<dependency>
593599
<groupId>org.testcontainers</groupId>
594600
<artifactId>testcontainers</artifactId>

Diff for: spring-javaformat-maven/spring-javaformat-maven-plugin/pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,21 @@
101101
</exclusion>
102102
</exclusions>
103103
</dependency>
104+
<dependency>
105+
<groupId>org.codehaus.plexus</groupId>
106+
<artifactId>plexus-utils</artifactId>
107+
</dependency>
108+
<!-- Provided -->
104109
<dependency>
105110
<groupId>org.apache.maven</groupId>
106111
<artifactId>maven-core</artifactId>
112+
<scope>provided</scope>
107113
</dependency>
108114
<dependency>
109115
<groupId>org.apache.maven</groupId>
110116
<artifactId>maven-plugin-api</artifactId>
117+
<scope>provided</scope>
111118
</dependency>
112-
<!-- Provided -->
113119
<dependency>
114120
<groupId>org.apache.maven.plugin-tools</groupId>
115121
<artifactId>maven-plugin-annotations</artifactId>

0 commit comments

Comments
 (0)