apply plugin: 'java-library' jar { baseName 'pantheon-ibft' manifest { attributes('Implementation-Title': baseName, 'Implementation-Version': project.version) } } dependencies { implementation project(':consensus:common') 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 'com.google.guava:guava' implementation 'io.vertx:vertx-core' testImplementation project( path: ':ethereum:core', configuration: 'testSupportArtifacts') testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.0-beta.5' testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.0-beta.5' testImplementation group: 'junit', name: 'junit', version: '4.12' testImplementation "org.awaitility:awaitility:3.1.2" testImplementation "org.assertj:assertj-core:3.10.0" testImplementation 'org.mockito:mockito-core' }