Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Aleksandrov <dmitry.aleksandrov@oracle.com>
  • Loading branch information
dalexandrov committed Dec 6, 2023
1 parent 722c95f commit d3ccf55
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions microprofile/testing/junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<artifactId>helidon-microprofile-server</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.helidon.microprofile.cdi</groupId>
<artifactId>helidon-microprofile-cdi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext.cdi</groupId>
<artifactId>jersey-weld2-se</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions microprofile/testing/junit5/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@

requires io.helidon.config.mp;
requires io.helidon.config.yaml.mp;
requires io.helidon.microprofile.server;
requires io.helidon.microprofile.cdi;
requires jakarta.inject;
requires org.junit.jupiter.api;

requires transitive jakarta.cdi;
requires transitive jakarta.ws.rs;


requires static io.helidon.microprofile.server;
requires static jersey.cdi1x;
requires static jersey.weld2.se;

Expand Down
5 changes: 5 additions & 0 deletions microprofile/testing/testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<artifactId>helidon-microprofile-server</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.helidon.microprofile.cdi</groupId>
<artifactId>helidon-microprofile-cdi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext.cdi</groupId>
<artifactId>jersey-weld2-se</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion microprofile/testing/testng/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@

requires io.helidon.config.mp;
requires io.helidon.config.yaml.mp;
requires io.helidon.microprofile.server;
requires io.helidon.microprofile.cdi;
requires jakarta.cdi;
requires jakarta.inject;
requires jakarta.ws.rs;
requires microprofile.config.api;
requires org.testng;

requires static io.helidon.microprofile.server;
requires static jersey.cdi1x;
requires static jersey.weld2.se;

Expand Down

0 comments on commit d3ccf55

Please sign in to comment.