apply plugin: 'java-library' jar { baseName 'pantheon-ibftlegacy' manifest { attributes( 'Specification-Title': baseName, 'Specification-Version': project.version, 'Implementation-Title': baseName, 'Implementation-Version': calculateVersion() ) } } dependencies { implementation project(':consensus:common') implementation project(':consensus:ibft') implementation project(':config') implementation project(':crypto') implementation project(':ethereum:core') implementation project(':ethereum:blockcreation') 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 project( path: ':consensus:ibft', configuration: 'testSupportArtifacts') 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' }