Skip to content

Commit 1cb23e8

Browse files
authored
Adds slf4j-api as a transitive runtime dependency of the OCI shaded full jar in helidon-integrations-oci-sdk-cdi (helidon-io#4522)
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
1 parent 53823c8 commit 1cb23e8

1 file changed

Lines changed: 18 additions & 4 deletions

File tree

integrations/oci/sdk/cdi/pom.xml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,32 @@
8585
<scope>runtime</scope>
8686
<optional>true</optional>
8787
</dependency>
88+
<!--
89+
This is a transitive dependency of the manually-installed
90+
oci-java-sdk-shaded-full artifact and so must be
91+
explicitly mentioned here.
92+
-->
8893
<dependency>
89-
<groupId>org.bouncycastle</groupId>
90-
<artifactId>bcpkix-jdk15on</artifactId>
91-
<scope>runtime</scope>
94+
<groupId>org.bouncycastle</groupId>
95+
<artifactId>bcpkix-jdk15on</artifactId>
96+
<scope>runtime</scope>
9297
</dependency>
93-
9498
<dependency>
9599
<groupId>org.jboss</groupId>
96100
<artifactId>jandex</artifactId>
97101
<scope>runtime</scope>
98102
<optional>true</optional>
99103
</dependency>
104+
<!--
105+
This is a transitive dependency of the manually-installed
106+
oci-java-sdk-shaded-full artifact and so must be
107+
explicitly mentioned here.
108+
-->
109+
<dependency>
110+
<groupId>org.slf4j</groupId>
111+
<artifactId>slf4j-api</artifactId>
112+
<scope>runtime</scope>
113+
</dependency>
100114

101115
<!-- Test-scoped dependencies. -->
102116

0 commit comments

Comments
 (0)