Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: convert helm client test source set to a module #300

Merged
merged 5 commits into from
Sep 5, 2023
Merged
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
@@ -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;
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;
}