Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 7e8abc5

Browse files
committed
Improve plexus-component metadata:
- drop redundant classes - remove dependency to plexus-container-default
1 parent 2a9ba6a commit 7e8abc5

File tree

9 files changed

+139
-1115
lines changed

9 files changed

+139
-1115
lines changed

plexus-component-metadata/pom.xml

+10-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
<description>A Maven plugin to generate Plexus Components descriptors from source javadoc tags and Java 5 class annotations.</description>
1717

1818
<dependencies>
19-
<dependency>
20-
<groupId>org.codehaus.plexus</groupId>
21-
<artifactId>plexus-container-default</artifactId>
22-
</dependency>
2319
<dependency>
2420
<groupId>org.codehaus.plexus</groupId>
2521
<artifactId>plexus-component-annotations</artifactId>
@@ -36,6 +32,11 @@
3632
<groupId>org.jdom</groupId>
3733
<artifactId>jdom2</artifactId>
3834
</dependency>
35+
<dependency>
36+
<groupId>org.eclipse.sisu</groupId>
37+
<artifactId>org.eclipse.sisu.plexus</artifactId>
38+
<scope>provided</scope>
39+
</dependency>
3940
<dependency>
4041
<groupId>org.apache.maven</groupId>
4142
<artifactId>maven-plugin-api</artifactId>
@@ -63,6 +64,11 @@
6364
<version>3.8.2</version>
6465
<scope>provided</scope>
6566
</dependency>
67+
<dependency>
68+
<groupId>junit</groupId>
69+
<artifactId>junit</artifactId>
70+
<scope>test</scope>
71+
</dependency>
6672
</dependencies>
6773

6874
<build>

0 commit comments

Comments
 (0)