Skip to content

Commit

Permalink
feat: convert helm client test source set to a module (#300)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon authored Sep 5, 2023
1 parent 5135f4f commit 2fcb3c3
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fullstack-helm-client/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
exports com.hedera.fullstack.helm.client.model.chart;
exports com.hedera.fullstack.helm.client.model.install;
exports com.hedera.fullstack.helm.client.execution;
exports com.hedera.fullstack.helm.client.proxy.request.chart to
com.hedera.fullstack.helm.client.test;
exports com.hedera.fullstack.helm.client.resource to
com.hedera.fullstack.helm.client.test;

opens com.hedera.fullstack.helm.client.model to
com.fasterxml.jackson.databind;
Expand Down
26 changes: 26 additions & 0 deletions fullstack-helm-client/src/test/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module com.hedera.fullstack.helm.client.test {
opens com.hedera.fullstack.helm.client.test to
org.junit.platform.commons;
opens com.hedera.fullstack.helm.client.test.execution to
org.junit.platform.commons;
opens com.hedera.fullstack.helm.client.test.model to
org.junit.platform.commons;
opens com.hedera.fullstack.helm.client.test.model.chart to
org.junit.platform.commons;
opens com.hedera.fullstack.helm.client.test.proxy.request.chart to
org.junit.platform.commons;
opens com.hedera.fullstack.helm.client.test.software to
org.junit.platform.commons;

requires com.fasterxml.jackson.databind;
requires com.hedera.fullstack.base.api;
requires com.hedera.fullstack.helm.client;
requires com.jcovalent.junit.logging;
requires jdk.attach;
requires org.assertj.core;
requires org.junit.jupiter.api;
requires org.junit.jupiter.params;
requires org.mockito.junit.jupiter;
requires org.mockito;
requires org.slf4j;
}

0 comments on commit 2fcb3c3

Please sign in to comment.