mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
851 B
29 lines
851 B
6 years ago
|
plugins { id 'java' }
|
||
|
|
||
|
version '1.0.0-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
|
||
|
repositories { mavenCentral() }
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':crypto')
|
||
|
implementation project(':ethereum:core')
|
||
|
implementation project(':ethereum:eth')
|
||
|
implementation project(':ethereum:jsonrpc')
|
||
|
implementation project(':ethereum:rlp')
|
||
|
implementation project(':ethereum:p2p')
|
||
|
implementation project(':services:kvstore')
|
||
|
implementation project(':consensus:common')
|
||
|
|
||
|
implementation 'com.google.guava:guava'
|
||
|
implementation 'io.vertx:vertx-core'
|
||
|
|
||
|
implementation project(':util')
|
||
|
testImplementation project( path: ':ethereum:core', configuration: 'testSupportArtifacts')
|
||
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
||
|
testImplementation "org.assertj:assertj-core:3.10.0"
|
||
|
testImplementation 'org.mockito:mockito-core'
|
||
|
}
|