Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Align dependency scopes/optionality (#33)
Browse files Browse the repository at this point in the history
Make it same as it is in Sisu, sans Plexus dependencies that were pulled by original p-c-d (annos, utils, classworlds)
  • Loading branch information
cstamas committed May 9, 2024
1 parent d7dce62 commit 8440828
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions org.eclipse.sisu.plexus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,25 @@
</dependency>
<!--
| @PostConstruct and @PreDestroy help with Plexus->JSR330 migration
| Optional: include if needed, or use Sisu own annotations
-->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.2</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!--
| CDI's @Typed helps with Plexus->JSR330 migration
| Optional: include if needed, or use Sisu own annotations
-->
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.2</version>
<scope>provided</scope>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
Expand Down Expand Up @@ -93,18 +99,21 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
Expand Down

0 comments on commit 8440828

Please sign in to comment.