Skip to content

Commit d91de78

Browse files
committed
problem: always required dependent modules are not added by default, and at the other side it's not always clear which one to add
1 parent 78e5e95 commit d91de78

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

etherjar-contract/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies {
2-
implementation project(':etherjar-abi')
3-
implementation project(':etherjar-domain')
4-
implementation project(':etherjar-rpc-api')
2+
api project(':etherjar-abi')
3+
api project(':etherjar-domain')
4+
api project(':etherjar-rpc-api')
55
implementation project(':etherjar-rlp')
66
implementation project(':etherjar-tx')
77

etherjar-erc20/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies {
2-
implementation project(':etherjar-abi')
3-
implementation project(':etherjar-domain')
4-
implementation project(':etherjar-contract')
5-
implementation project(':etherjar-rpc-api')
2+
api project(':etherjar-abi')
3+
api project(':etherjar-domain')
4+
api project(':etherjar-contract')
5+
api project(':etherjar-rpc-api')
66
}

0 commit comments

Comments
 (0)