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(':config') implementation project(':consensus:common') implementation project(':consensus:ibft') implementation project(':crypto') implementation project(':ethereum:blockcreation') implementation project(':ethereum:core') implementation project(':ethereum:eth') implementation project(':ethereum:api') implementation project(':ethereum:rlp') implementation project(':ethereum:p2p') implementation project(':metrics:core') 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 project(':testutil') testImplementation project(':metrics:core') testImplementation 'junit:junit' testImplementation 'org.assertj:assertj-core' testImplementation 'org.awaitility:awaitility' testImplementation 'org.mockito:mockito-core' }