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.
45 lines
1.6 KiB
45 lines
1.6 KiB
apply plugin: 'java-library'
|
|
|
|
jar {
|
|
archiveBaseName = 'besu-blockcreation'
|
|
manifest {
|
|
attributes(
|
|
'Specification-Title': archiveBaseName,
|
|
'Specification-Version': project.version,
|
|
'Implementation-Title': archiveBaseName,
|
|
'Implementation-Version': calculateVersion(),
|
|
'Commit-Hash': getGitCommitDetails(40).hash
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':config')
|
|
implementation project(':crypto:algorithms')
|
|
implementation project(':datatypes')
|
|
implementation project(':ethereum:core')
|
|
implementation project(':ethereum:eth')
|
|
implementation project(':evm')
|
|
implementation project(':services:kvstore')
|
|
implementation project(':util')
|
|
|
|
implementation 'com.google.guava:guava'
|
|
implementation 'io.vertx:vertx-core'
|
|
implementation 'io.tmio:tuweni-bytes'
|
|
implementation 'io.tmio:tuweni-units'
|
|
|
|
testImplementation project(':besu')
|
|
testImplementation project(path: ':config', configuration: 'testSupportArtifacts')
|
|
testImplementation project(path: ':ethereum:core', configuration: 'testArtifacts')
|
|
testImplementation project(path: ':ethereum:core', configuration: 'testSupportArtifacts')
|
|
testImplementation project(':ethereum:referencetests')
|
|
testImplementation project(':metrics:core')
|
|
testImplementation project(':testutil')
|
|
|
|
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter'
|
|
testImplementation 'org.mockito:mockito-core'
|
|
}
|
|
|