Skip to content

Commit b36a2b4

Browse files
authored
Add missing dependencies (#53)
* Add missing dependencies
1 parent 71415d8 commit b36a2b4

File tree

3 files changed

+67
-7
lines changed

3 files changed

+67
-7
lines changed

pom.xml

Lines changed: 65 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,28 @@ under the License.
116116
<version>${mavenVersion}</version>
117117
<scope>provided</scope>
118118
</dependency>
119+
<dependency>
120+
<groupId>org.apache.maven</groupId>
121+
<artifactId>maven-settings-builder</artifactId>
122+
<version>${mavenVersion}</version>
123+
<scope>provided</scope>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.apache.maven.resolver</groupId>
127+
<artifactId>maven-resolver-api</artifactId>
128+
<version>1.4.1</version>
129+
</dependency>
130+
119131
<!-- dependencies to annotations -->
120132
<dependency>
121133
<groupId>org.apache.maven.plugin-tools</groupId>
122134
<artifactId>maven-plugin-annotations</artifactId>
123135
</dependency>
136+
<dependency>
137+
<groupId>javax.inject</groupId>
138+
<artifactId>javax.inject</artifactId>
139+
<version>1</version>
140+
</dependency>
124141

125142
<!-- shared -->
126143
<dependency>
@@ -140,6 +157,11 @@ under the License.
140157
</dependency>
141158

142159
<!-- plexus -->
160+
<dependency>
161+
<groupId>org.eclipse.sisu</groupId>
162+
<artifactId>org.eclipse.sisu.plexus</artifactId>
163+
<scope>provided</scope>
164+
</dependency>
143165
<dependency>
144166
<groupId>org.codehaus.plexus</groupId>
145167
<artifactId>plexus-mail-sender-api</artifactId>
@@ -202,6 +224,43 @@ under the License.
202224
<version>2.2.0</version>
203225
</dependency>
204226

227+
<dependency>
228+
<groupId>org.apache.velocity.tools</groupId>
229+
<artifactId>velocity-tools-generic</artifactId>
230+
<version>3.1</version>
231+
</dependency>
232+
<dependency>
233+
<groupId>org.apache.velocity</groupId>
234+
<artifactId>velocity-engine-core</artifactId>
235+
<version>2.4</version>
236+
</dependency>
237+
<dependency>
238+
<groupId>org.apache.cxf</groupId>
239+
<artifactId>cxf-api</artifactId>
240+
<version>2.6.11</version>
241+
</dependency>
242+
<dependency>
243+
<groupId>org.apache.cxf</groupId>
244+
<artifactId>cxf-rt-transports-http</artifactId>
245+
<version>2.6.11</version>
246+
</dependency>
247+
<dependency>
248+
<groupId>org.apache.xmlrpc</groupId>
249+
<artifactId>xmlrpc-common</artifactId>
250+
<version>3.1.3</version>
251+
<exclusions>
252+
<exclusion>
253+
<groupId>xml-apis</groupId>
254+
<artifactId>xml-apis</artifactId>
255+
</exclusion>
256+
</exclusions>
257+
</dependency>
258+
<dependency>
259+
<groupId>javax.ws.rs</groupId>
260+
<artifactId>jsr311-api</artifactId>
261+
<version>1.1.1</version>
262+
</dependency>
263+
205264
<!-- commons -->
206265
<dependency>
207266
<groupId>org.apache.commons</groupId>
@@ -266,11 +325,6 @@ under the License.
266325
<artifactId>github-api</artifactId>
267326
<version>1.326</version>
268327
</dependency>
269-
<dependency>
270-
<groupId>com.google.code.gson</groupId>
271-
<artifactId>gson</artifactId>
272-
<version>2.10.1</version>
273-
</dependency>
274328

275329
<!-- for rss feed generation -->
276330
<dependency>
@@ -292,6 +346,12 @@ under the License.
292346
<version>4.11.0</version>
293347
<scope>test</scope>
294348
</dependency>
349+
<dependency>
350+
<groupId>org.hamcrest</groupId>
351+
<artifactId>hamcrest-core</artifactId>
352+
<version>1.3</version>
353+
<scope>test</scope>
354+
</dependency>
295355
<dependency>
296356
<groupId>org.apache.maven.plugin-testing</groupId>
297357
<artifactId>maven-plugin-testing-harness</artifactId>

src/main/java/org/apache/maven/plugins/changes/ChangesReport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import java.util.Properties;
3636
import java.util.ResourceBundle;
3737

38-
import org.apache.commons.collections.map.CaseInsensitiveMap;
38+
import org.apache.commons.collections4.map.CaseInsensitiveMap;
3939
import org.apache.commons.io.input.XmlStreamReader;
4040
import org.apache.maven.plugins.annotations.Mojo;
4141
import org.apache.maven.plugins.annotations.Parameter;

src/main/java/org/apache/maven/plugins/issues/IssuesReportHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.List;
2424
import java.util.Map;
2525

26-
import org.apache.commons.collections.bidimap.DualHashBidiMap;
26+
import org.apache.commons.collections4.bidimap.DualHashBidiMap;
2727
import org.apache.maven.plugin.logging.Log;
2828

2929
/**

0 commit comments

Comments
 (0)