@ -16,12 +16,12 @@
apply plugin: 'java-library'
apply plugin: 'java-library'
jar {
jar {
baseName 'besu'
archiveBaseName = 'besu'
manifest {
manifest {
attributes (
attributes (
'Specification-Title' : b aseName,
'Specification-Title' : archiveB aseName,
'Specification-Version' : project . version ,
'Specification-Version' : project . version ,
'Implementation-Title' : b aseName,
'Implementation-Title' : archiveB aseName,
'Implementation-Version' : calculateVersion ( )
'Implementation-Version' : calculateVersion ( )
)
)
}
}
@ -58,13 +58,13 @@ dependencies {
implementation 'io.vertx:vertx-core'
implementation 'io.vertx:vertx-core'
implementation 'io.vertx:vertx-web'
implementation 'io.vertx:vertx-web'
implementation 'org.apache.logging.log4j:log4j-api'
implementation 'org.apache.logging.log4j:log4j-api'
implementation 'org.apache.logging.log4j:log4j-core'
implementation 'org.apache.tuweni:tuweni-bytes'
implementation 'org.apache.tuweni:tuweni-bytes'
implementation 'org.apache.tuweni:tuweni-config'
implementation 'org.apache.tuweni:tuweni-config'
implementation 'org.apache.tuweni:tuweni-units'
implementation 'org.apache.tuweni:tuweni-units'
implementation 'org.springframework.security:spring-security-crypto'
implementation 'org.springframework.security:spring-security-crypto'
runtime 'org.apache.logging.log4j:log4j-core'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl'
testImplementation project ( path: ':ethereum:core' , configuration: 'testSupportArtifacts' )
testImplementation project ( path: ':ethereum:core' , configuration: 'testSupportArtifacts' )
testImplementation project ( ':testutil' )
testImplementation project ( ':testutil' )
@ -81,12 +81,12 @@ dependencies {
}
}
task testJar ( type: Jar ) {
task testJar ( type: Jar ) {
archiveName 'testPlugins.jar'
archiveFile Name = 'testPlugins.jar'
manifest {
manifest {
attributes (
attributes (
'Specification-Title' : b aseName,
'Specification-Title' : archiveB aseName,
'Specification-Version' : project . version ,
'Specification-Version' : project . version ,
'Implementation-Title' : b aseName,
'Implementation-Title' : archiveB aseName,
'Implementation-Version' : calculateVersion ( )
'Implementation-Version' : calculateVersion ( )
)
)
}
}