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.
52 lines
1.7 KiB
52 lines
1.7 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'
|
|
// Disable picocli while the 3.6 release with default enhancement is published.
|
|
// The jar is directly inserted until then.
|
|
// implementation 'info.picocli:picocli'
|
|
compile files('libs/picocli-3.6.0-SNAPSHOT.jar')
|
|
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 = "net.consensys.pantheon"
|
|
addString("version", "$rootProject.name/$rootProject.version")
|
|
}
|
|
|
|
compileJava.dependsOn(writeInfoFile)
|
|
|