Skip to content

Commit

Permalink
[MJAR-303] Cleanup declared dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Mar 30, 2024
1 parent 845c120 commit ee85d59
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions pom.xml
Expand Up @@ -92,6 +92,7 @@
</dependencyManagement>

<dependencies>
<!-- Maven Core -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand All @@ -110,12 +111,15 @@
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>

<!-- plugins annotations -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${mavenVersion}</version>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<scope>provided</scope>
</dependency>

<!-- Maven shared -->
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>file-management</artifactId>
Expand All @@ -126,11 +130,28 @@
<artifactId>maven-archiver</artifactId>
<version>${mavenArchiverVersion}</version>
</dependency>
<!-- dependencies to annotations -->

<!-- plexus -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<scope>provided</scope>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.9.2</version>
</dependency>

<!-- Other used dependencies -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>

<!-- Test -->
Expand Down

0 comments on commit ee85d59

Please sign in to comment.