diff --git a/fullstack-helm-client/src/main/java/module-info.java b/fullstack-helm-client/src/main/java/module-info.java index f9dedce69..51d202231 100644 --- a/fullstack-helm-client/src/main/java/module-info.java +++ b/fullstack-helm-client/src/main/java/module-info.java @@ -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; diff --git a/fullstack-helm-client/src/test/java/module-info.java b/fullstack-helm-client/src/test/java/module-info.java new file mode 100644 index 000000000..dc970f75e --- /dev/null +++ b/fullstack-helm-client/src/test/java/module-info.java @@ -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; +}