Skip to content

Commit

Permalink
fix: expose internal dependencies as API to fix NoClassDefFound error…
Browse files Browse the repository at this point in the history
…s downstream
  • Loading branch information
mirceanis committed Mar 20, 2020
1 parent 4857eab commit 791c0aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api "com.squareup.okhttp3:okhttp:$okhttp_version"
api "com.github.komputing.khex:extensions:$khex_version"
api "com.github.komputing.kethereum:extensions_kotlin:$kethereum_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"
api "com.madgag.spongycastle:core:$spongycastle_version"

testImplementation "junit:junit:$junit_version"
testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
Expand Down
10 changes: 5 additions & 5 deletions signer-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies {
api "com.github.komputing.khex:extensions:$khex_version"
api "com.github.komputing.kethereum:extensions_kotlin:$kethereum_version"
api "com.github.komputing.kethereum:model:$kethereum_version"
implementation "com.github.komputing.kethereum:extensions_transactions:$kethereum_version"
implementation "com.github.komputing.kethereum:crypto:$kethereum_version"
implementation "com.github.komputing.khash:sha256:$khash_version"
implementation "com.github.komputing.kethereum:crypto_impl_spongycastle:$kethereum_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"
api "com.github.komputing.kethereum:extensions_transactions:$kethereum_version"
api "com.github.komputing.kethereum:crypto:$kethereum_version"
api "com.github.komputing.khash:sha256:$khash_version"
api "com.github.komputing.kethereum:crypto_impl_spongycastle:$kethereum_version"
api "com.madgag.spongycastle:core:$spongycastle_version"


testImplementation "junit:junit:$junit_version"
Expand Down

0 comments on commit 791c0aa

Please sign in to comment.