Skip to content

Commit

Permalink
Dependency fix
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 Nov 21, 2023
1 parent ea9af2a commit 7eed160
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion microprofile/testing/testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</dependency>
<dependency>
<groupId>io.helidon.microprofile.testing</groupId>
<artifactId>helidon-microprofile-testing-jaxrs</artifactId>
<artifactId>helidon-microprofile-testing-common</artifactId>
</dependency>
</dependencies>

Expand Down
1 change: 0 additions & 1 deletion microprofile/testing/testng/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
requires io.helidon.config.mp;
requires io.helidon.config.yaml.mp;
requires io.helidon.microprofile.testing.common;
requires io.helidon.microprofile.testing.jaxrs;
requires jakarta.cdi;
requires jakarta.inject;
requires jakarta.ws.rs;
Expand Down
1 change: 0 additions & 1 deletion microprofile/tests/testing/junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
<dependency>
<groupId>io.helidon.microprofile.testing</groupId>
<artifactId>helidon-microprofile-testing-jaxrs</artifactId>
<version>4.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
package io.helidon.microprofile.tests.testing.junit5;

import io.helidon.microprofile.testing.jaxrs.AddJaxRs;
import io.helidon.microprofile.testing.junit5.AddBean;
import io.helidon.microprofile.testing.junit5.DisableDiscovery;
import io.helidon.microprofile.testing.junit5.HelidonTest;
import jakarta.enterprise.context.RequestScoped;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
Expand Down
5 changes: 5 additions & 0 deletions microprofile/tests/testing/testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,10 @@
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.helidon.microprofile.testing</groupId>
<artifactId>helidon-microprofile-testing-jaxrs</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
package io.helidon.microprofile.tests.testing.testng;

import io.helidon.microprofile.testing.jaxrs.AddJaxRs;
import io.helidon.microprofile.testing.testng.AddBean;
import io.helidon.microprofile.testing.testng.DisableDiscovery;
import io.helidon.microprofile.testing.testng.HelidonTest;
import jakarta.enterprise.context.RequestScoped;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
Expand Down

0 comments on commit 7eed160

Please sign in to comment.