Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 527ebf8

Browse filesBrowse files
committed
Cleanup dependencies
Closes #355
1 parent 57dfc26 commit 527ebf8
Copy full SHA for 527ebf8

File tree

Expand file treeCollapse file tree

8 files changed

+22
-20
lines changed
Filter options
Expand file treeCollapse file tree

8 files changed

+22
-20
lines changed

‎plexus-compiler-manager/pom.xml

Copy file name to clipboardExpand all lines: plexus-compiler-manager/pom.xml
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
<groupId>javax.inject</groupId>
2222
<artifactId>javax.inject</artifactId>
2323
</dependency>
24+
<dependency>
25+
<groupId>org.slf4j</groupId>
26+
<artifactId>slf4j-api</artifactId>
27+
</dependency>
2428
<dependency>
2529
<groupId>org.codehaus.plexus</groupId>
2630
<artifactId>plexus-xml</artifactId>

‎plexus-compiler-test/pom.xml

Copy file name to clipboardExpand all lines: plexus-compiler-test/pom.xml
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
<name>Plexus Compiler Test Harness</name>
1414

1515
<dependencies>
16+
<dependency>
17+
<groupId>javax.inject</groupId>
18+
<artifactId>javax.inject</artifactId>
19+
</dependency>
1620
<dependency>
1721
<groupId>org.codehaus.plexus</groupId>
1822
<artifactId>plexus-compiler-api</artifactId>

‎plexus-compilers/plexus-compiler-aspectj/pom.xml

Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-aspectj/pom.xml
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
<artifactId>aspectjtools</artifactId>
3333
<version>${aspectj.version}</version>
3434
</dependency>
35+
<dependency>
36+
<groupId>org.codehaus.plexus</groupId>
37+
<artifactId>plexus-utils</artifactId>
38+
</dependency>
3539
</dependencies>
3640

3741
<build>

‎plexus-compilers/plexus-compiler-csharp/pom.xml

Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-csharp/pom.xml
-5Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@
2222
<groupId>org.codehaus.plexus</groupId>
2323
<artifactId>plexus-utils</artifactId>
2424
</dependency>
25-
<dependency>
26-
<groupId>org.junit.jupiter</groupId>
27-
<artifactId>junit-jupiter-api</artifactId>
28-
<scope>test</scope>
29-
</dependency>
3025
<dependency>
3126
<groupId>org.hamcrest</groupId>
3227
<artifactId>hamcrest</artifactId>

‎plexus-compilers/plexus-compiler-eclipse/pom.xml

Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-eclipse/pom.xml
+3-8Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
</properties>
1919

2020
<dependencies>
21-
<dependency>
22-
<groupId>org.codehaus.plexus</groupId>
23-
<artifactId>plexus-compiler-api</artifactId>
24-
</dependency>
2521
<dependency>
2622
<groupId>org.codehaus.plexus</groupId>
2723
<artifactId>plexus-utils</artifactId>
@@ -36,9 +32,8 @@
3632
<artifactId>javax.inject</artifactId>
3733
</dependency>
3834
<dependency>
39-
<groupId>org.junit.jupiter</groupId>
40-
<artifactId>junit-jupiter-api</artifactId>
41-
<scope>test</scope>
35+
<groupId>org.slf4j</groupId>
36+
<artifactId>slf4j-api</artifactId>
4237
</dependency>
4338
<dependency>
4439
<groupId>org.junit.jupiter</groupId>
@@ -53,7 +48,7 @@
5348
<dependency>
5449
<groupId>org.codehaus.plexus</groupId>
5550
<artifactId>plexus-testing</artifactId>
56-
<scope>compile</scope>
51+
<scope>test</scope>
5752
</dependency>
5853
</dependencies>
5954

‎plexus-compilers/plexus-compiler-javac-errorprone/pom.xml

Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-javac-errorprone/pom.xml
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
</properties>
2121

2222
<dependencies>
23-
<dependency>
24-
<groupId>org.codehaus.plexus</groupId>
25-
<artifactId>plexus-utils</artifactId>
26-
</dependency>
2723
<dependency>
2824
<groupId>org.codehaus.plexus</groupId>
2925
<artifactId>plexus-compiler-javac</artifactId>

‎plexus-compilers/plexus-compiler-javac/pom.xml

Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-javac/pom.xml
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@
2323
<artifactId>javax.inject</artifactId>
2424
</dependency>
2525
<dependency>
26-
<groupId>org.junit.jupiter</groupId>
27-
<artifactId>junit-jupiter-api</artifactId>
28-
<scope>test</scope>
26+
<groupId>org.slf4j</groupId>
27+
<artifactId>slf4j-api</artifactId>
2928
</dependency>
3029
<dependency>
3130
<groupId>org.junit.jupiter</groupId>

‎pom.xml

Copy file name to clipboardExpand all lines: pom.xml
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@
138138
<artifactId>plexus-xml</artifactId>
139139
<version>3.0.0</version>
140140
</dependency>
141+
<dependency>
142+
<groupId>org.slf4j</groupId>
143+
<artifactId>slf4j-api</artifactId>
144+
<version>1.7.36</version>
145+
</dependency>
141146
</dependencies>
142147
</dependencyManagement>
143148

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.