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.
49 lines
1.6 KiB
49 lines
1.6 KiB
apply plugin: 'java-library'
|
|
|
|
jar {
|
|
baseName 'pantheon'
|
|
manifest {
|
|
attributes('Implementation-Title': baseName,
|
|
'Implementation-Version': project.version)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':crypto')
|
|
implementation project(':consensus:common')
|
|
implementation project(':consensus:clique')
|
|
implementation project(':consensus:ibft')
|
|
implementation project(':consensus:clique')
|
|
implementation project(':ethereum:eth')
|
|
implementation project(':ethereum:client')
|
|
implementation project(':ethereum:core')
|
|
implementation project(':ethereum:rlp')
|
|
implementation project(':ethereum:p2p')
|
|
implementation project(':ethereum:jsonrpc')
|
|
implementation project(':services:kvstore')
|
|
|
|
implementation 'com.google.guava:guava'
|
|
implementation('info.picocli:picocli')
|
|
implementation 'net.consensys.cava:cava-toml'
|
|
implementation 'io.vertx:vertx-core'
|
|
implementation 'io.vertx:vertx-web'
|
|
implementation 'org.apache.logging.log4j:log4j-api'
|
|
|
|
runtime 'org.apache.logging.log4j:log4j-core'
|
|
|
|
testImplementation project(':testutil')
|
|
testImplementation project( path: ':ethereum:core', configuration: 'testSupportArtifacts')
|
|
|
|
testImplementation 'com.squareup.okhttp3:okhttp'
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.mockito:mockito-core'
|
|
}
|
|
|
|
task writeInfoFile(type: ProjectPropertiesFile) {
|
|
destPackage = "tech.pegasys.pantheon"
|
|
addString("version", "$rootProject.name/$rootProject.version")
|
|
}
|
|
|
|
compileJava.dependsOn(writeInfoFile)
|
|
|