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' }