-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: convert helm client test source set to a module (#300)
Signed-off-by: Jeromy Cannon <[email protected]>
- Loading branch information
1 parent
5135f4f
commit 2fcb3c3
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |