Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}