Skip to content

Commit ee85d59

Browse files
[MJAR-303] Cleanup declared dependencies
1 parent 845c120 commit ee85d59

File tree

1 file changed

+28
-7
lines changed

1 file changed

+28
-7
lines changed

pom.xml

+28-7
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
</dependencyManagement>
9393

9494
<dependencies>
95+
<!-- Maven Core -->
9596
<dependency>
9697
<groupId>org.apache.maven</groupId>
9798
<artifactId>maven-plugin-api</artifactId>
@@ -110,12 +111,15 @@
110111
<version>${mavenVersion}</version>
111112
<scope>provided</scope>
112113
</dependency>
114+
115+
<!-- plugins annotations -->
113116
<dependency>
114-
<groupId>org.apache.maven</groupId>
115-
<artifactId>maven-model</artifactId>
116-
<version>${mavenVersion}</version>
117+
<groupId>org.apache.maven.plugin-tools</groupId>
118+
<artifactId>maven-plugin-annotations</artifactId>
117119
<scope>provided</scope>
118120
</dependency>
121+
122+
<!-- Maven shared -->
119123
<dependency>
120124
<groupId>org.apache.maven.shared</groupId>
121125
<artifactId>file-management</artifactId>
@@ -126,11 +130,28 @@
126130
<artifactId>maven-archiver</artifactId>
127131
<version>${mavenArchiverVersion}</version>
128132
</dependency>
129-
<!-- dependencies to annotations -->
133+
134+
<!-- plexus -->
130135
<dependency>
131-
<groupId>org.apache.maven.plugin-tools</groupId>
132-
<artifactId>maven-plugin-annotations</artifactId>
133-
<scope>provided</scope>
136+
<groupId>org.codehaus.plexus</groupId>
137+
<artifactId>plexus-utils</artifactId>
138+
</dependency>
139+
<dependency>
140+
<groupId>org.codehaus.plexus</groupId>
141+
<artifactId>plexus-archiver</artifactId>
142+
<version>4.9.2</version>
143+
</dependency>
144+
145+
<!-- Other used dependencies -->
146+
<dependency>
147+
<groupId>javax.inject</groupId>
148+
<artifactId>javax.inject</artifactId>
149+
<version>1</version>
150+
</dependency>
151+
<dependency>
152+
<groupId>org.slf4j</groupId>
153+
<artifactId>slf4j-api</artifactId>
154+
<version>1.7.36</version>
134155
</dependency>
135156

136157
<!-- Test -->

0 commit comments

Comments
 (0)