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.
36 lines
982 B
36 lines
982 B
|
|
dependencies {
|
|
api 'org.slf4j:slf4j-api'
|
|
|
|
implementation project(':besu')
|
|
implementation project(':crypto:algorithms')
|
|
implementation project(':datatypes')
|
|
implementation project(':ethereum:core')
|
|
implementation project(':ethereum:rlp')
|
|
implementation project(':ethereum:api')
|
|
implementation project(':plugin-api')
|
|
implementation 'com.google.auto.service:auto-service'
|
|
implementation 'info.picocli:picocli'
|
|
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
task testPluginsJar(type: Jar) {
|
|
archiveFileName = 'testPlugins.jar'
|
|
manifest {
|
|
attributes(
|
|
'Specification-Title': archiveBaseName,
|
|
'Specification-Version': project.version,
|
|
'Implementation-Title': archiveBaseName,
|
|
'Implementation-Version': calculateVersion(),
|
|
'Commit-Hash': getGitCommitDetails(40).hash
|
|
)
|
|
}
|
|
from sourceSets.main.output
|
|
}
|
|
|
|
artifacts { testPluginsJar }
|
|
|
|
|
|
javadoc { enabled = false }
|
|
|