forked from nervosnetwork/ckb-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 🤖 replace compile with implementation in build.gradle
- Loading branch information
Liu Chuankai
committed
Apr 28, 2023
1 parent
01cd30d
commit f43d97c
Showing
8 changed files
with
46 additions
and
23 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
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
description 'ckb-sdk-java is a lightweight Java library for integration with nervos CKB.' | ||
|
||
dependencies { | ||
compile project(":core") | ||
compile project(":ckb-indexer") | ||
compile project(":light-client") | ||
compile project(":utils") | ||
compile project(":serialization") | ||
implementation project(":core") | ||
implementation project(":ckb-indexer") | ||
implementation project(":light-client") | ||
implementation project(":utils") | ||
implementation project(":serialization") | ||
|
||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
} | ||
|
||
apply plugin: 'com.github.johnrengelman.shadow' |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
description 'CKB core' | ||
|
||
dependencies { | ||
compile project(":serialization") | ||
compile "org.slf4j:slf4j-api:$slf4jVersion" | ||
compile "io.reactivex.rxjava2:rxjava:$rxjavaVersion" | ||
compile "com.google.code.gson:gson:$gsonVersion" | ||
compile "com.squareup.okhttp3:okhttp:$okhttpVersion" | ||
compile "com.squareup.okhttp3:logging-interceptor:$loggingOkhttpVersion" | ||
implementation(project(":utils")) | ||
implementation project(":serialization") | ||
|
||
implementation "org.slf4j:slf4j-api:$slf4jVersion" | ||
implementation "io.reactivex.rxjava2:rxjava:$rxjavaVersion" | ||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
implementation("com.google.code.findbugs:jsr305:3.0.2") | ||
implementation("com.google.guava:guava:$guavaVersion") | ||
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion" | ||
implementation "com.squareup.okhttp3:logging-interceptor:$loggingOkhttpVersion" | ||
} |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
description 'ckb-sdk-java is a lightweight Java library for integration with nervos CKB.' | ||
|
||
dependencies { | ||
compile project(":ckb") | ||
compile project(":ckb-indexer") | ||
compile project(":light-client") | ||
compile project(":utils") | ||
compile "com.google.code.gson:gson:$gsonVersion" | ||
compile "org.slf4j:slf4j-api:$slf4jVersion" | ||
implementation project(":ckb") | ||
implementation project(":ckb-indexer") | ||
implementation project(":light-client") | ||
implementation project(":utils") | ||
implementation project(":core") | ||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
implementation "org.slf4j:slf4j-api:$slf4jVersion" | ||
} |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
description 'Minimal set of ckb serialization classes' | ||
|
||
dependencies { | ||
compile project(":utils") | ||
implementation project(":utils") | ||
|
||
implementation("com.google.code.findbugs:jsr305:3.0.2") | ||
} |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
description 'Minimal set of ckb utility classes' | ||
|
||
dependencies { | ||
compile "org.bouncycastle:bcprov-jdk15on:$bouncycastleVersion" | ||
compile "com.google.guava:guava:$guavaVersion" | ||
implementation "org.bouncycastle:bcprov-jdk15on:$bouncycastleVersion" | ||
implementation("com.google.guava:guava:$guavaVersion") | ||
} |