mirror of
https://github.com/vacp2p/status-linea-besu.git
synced 2026-01-09 15:28:09 -05:00
Refactor crypto, datatypes, and plugin-api to reduce plugin APIs in the EVM. Split crypto into crypto services and crypto algorithms Reverse the dependency between datatyps and plugin-api. Remove plugin Hash and Address types (use datatypes) Move PublicKey and Quantity into datatypes. Lots of changes to imports and build files, and some fromPlugin calls removed. Signed-off-by: Danno Ferrin <danno.ferrin@swirldslabs.com> Signed-off-by: Danno Ferrin <danno.ferrin@shemnon.com> Co-authored-by: Justin Florentine <justin+github@florentine.us>
38 lines
984 B
Groovy
38 lines
984 B
Groovy
|
|
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(':plugin-api')
|
|
implementation 'com.google.auto.service:auto-service'
|
|
implementation 'info.picocli:picocli'
|
|
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
|
|
}
|
|
|
|
task testPluginsJar(type: Jar) {
|
|
archiveFileName = 'testPlugins.jar'
|
|
manifest {
|
|
attributes(
|
|
'Specification-Title': archiveBaseName,
|
|
'Specification-Version': project.version,
|
|
'Implementation-Title': archiveBaseName,
|
|
'Implementation-Version': calculateVersion()
|
|
)
|
|
}
|
|
from sourceSets.main.output
|
|
}
|
|
|
|
artifacts { testPluginsJar }
|
|
|
|
|
|
javadoc { enabled = false }
|