-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
46 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
description 'Ethereum Application Binary Interface (ABI) for working with smart contracts' | ||
|
||
dependencies { | ||
compile project(':utils') | ||
api project(':utils') | ||
} |
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,7 +1,9 @@ | ||
|
||
plugins { | ||
id 'java-library' | ||
} | ||
description 'Besu JSON-RPC API' | ||
|
||
dependencies { | ||
compile project(':eea') | ||
testCompile project(path: ':core', configuration: 'testArtifacts') | ||
api project(':eea') | ||
testImplementation project(path: ':core', configuration: 'testArtifacts') | ||
} |
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
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,7 +1,10 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
description 'EEA JSON-RPC API' | ||
|
||
dependencies { | ||
compile project(':core') | ||
testCompile project(path: ':core', configuration: 'testArtifacts') | ||
api project(':core') | ||
testImplementation project(path: ':core', configuration: 'testArtifacts') | ||
} |
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,4 +1,4 @@ | ||
|
||
description 'web3j customisations for working with hosted web3 providers (Infura.io & Nodesmith.io)' | ||
|
||
dependencies { compile project(':core') } | ||
dependencies { implementation project(':core') } |
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,4 +1,7 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
description 'Ethereum Recursive Length Prefix (RLP) encoding for serializing objects' | ||
|
||
dependencies { compile project(':utils') } | ||
dependencies { api project(':utils') } |
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,4 +1,7 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
description 'Minimal set of web3j utility classes' | ||
|
||
dependencies { compile "org.bouncycastle:bcprov-jdk18on:$bouncycastleVersion" } | ||
dependencies { api "org.bouncycastle:bcprov-jdk18on:$bouncycastleVersion" } |