Skip to content

Commit d132cc5

Browse files
gselzerctrueden
authored andcommitted
Clean dependencies
1 parent d9aeae2 commit d132cc5

File tree

2 files changed

+7
-18
lines changed

2 files changed

+7
-18
lines changed

pom.xml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -215,22 +215,6 @@
215215
<artifactId>enforcer-api</artifactId>
216216
<version>${enforcer-api.version}</version>
217217
</dependency>
218-
<dependency>
219-
<groupId>org.apache.maven</groupId>
220-
<artifactId>maven-project</artifactId>
221-
<version>${maven-project.version}</version>
222-
</dependency>
223-
<!-- <dependency>
224-
<groupId>org.apache.maven</groupId>
225-
<artifactId>maven-core</artifactId>
226-
<version>${maven-core.version}</version>
227-
</dependency>
228-
-->
229-
<dependency>
230-
<groupId>org.apache.maven</groupId>
231-
<artifactId>maven-artifact</artifactId>
232-
<version>${maven-artifact.version}</version>
233-
</dependency>
234218
<dependency>
235219
<groupId>org.apache.maven</groupId>
236220
<artifactId>maven-plugin-api</artifactId>
@@ -257,6 +241,12 @@
257241
<artifactId>junit</artifactId>
258242
<scope>test</scope>
259243
</dependency>
244+
<dependency>
245+
<groupId>org.hamcrest</groupId>
246+
<artifactId>hamcrest-core</artifactId>
247+
<version>1.3</version>
248+
<scope>test</scope>
249+
</dependency>
260250
<dependency>
261251
<groupId>org.hamcrest</groupId>
262252
<artifactId>hamcrest-library</artifactId>

src/main/java/org/scijava/packages/plugin/CollectionOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
package org.scijava.packages.plugin;
22

3+
import java.util.Arrays;
34
import java.util.Collection;
45
import java.util.List;
56

6-
import edu.emory.mathcs.backport.java.util.Arrays;
7-
87
public class CollectionOutput {
98

109
public static <T> String joinCollection(Collection<T> collection, final StringProvider<T> stringProvider,

0 commit comments

Comments
 (0)