Skip to content

Commit 5d32e6c

Browse files
authored
[MENFORCER-490] Declare maven-enforcer-plugin dependencies (#285)
* [MENFORCER-490] Declare maven-enforcer-plugin dependencies
1 parent d258109 commit 5d32e6c

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

maven-enforcer-plugin/pom.xml

+26-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,26 @@
5858
<version>1.7.36</version>
5959
<scope>provided</scope>
6060
</dependency>
61+
<dependency>
62+
<groupId>org.codehaus.plexus</groupId>
63+
<artifactId>plexus-classworlds</artifactId>
64+
<scope>provided</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.codehaus.plexus</groupId>
68+
<artifactId>plexus-utils</artifactId>
69+
<scope>provided</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.eclipse.sisu</groupId>
73+
<artifactId>org.eclipse.sisu.plexus</artifactId>
74+
<scope>provided</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>javax.inject</groupId>
78+
<artifactId>javax.inject</artifactId>
79+
<scope>provided</scope>
80+
</dependency>
6181

6282
<dependency>
6383
<groupId>org.apache.maven.enforcer</groupId>
@@ -73,9 +93,14 @@
7393
<artifactId>mockito-junit-jupiter</artifactId>
7494
<scope>test</scope>
7595
</dependency>
96+
<dependency>
97+
<groupId>org.mockito</groupId>
98+
<artifactId>mockito-core</artifactId>
99+
<scope>test</scope>
100+
</dependency>
76101
<dependency>
77102
<groupId>org.junit.jupiter</groupId>
78-
<artifactId>junit-jupiter-engine</artifactId>
103+
<artifactId>junit-jupiter-api</artifactId>
79104
<scope>test</scope>
80105
</dependency>
81106
<dependency>

pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,18 @@
154154
<version>0.9.0.M2</version>
155155
<scope>provided</scope>
156156
</dependency>
157+
<dependency>
158+
<groupId>org.codehaus.plexus</groupId>
159+
<artifactId>plexus-classworlds</artifactId>
160+
<version>2.5.2</version>
161+
<scope>provided</scope>
162+
</dependency>
163+
<dependency>
164+
<groupId>javax.inject</groupId>
165+
<artifactId>javax.inject</artifactId>
166+
<version>1</version>
167+
<scope>provided</scope>
168+
</dependency>
157169

158170
<!-- other dependencies -->
159171
<dependency>

0 commit comments

Comments
 (0)