mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-07 22:54:08 -05:00
45 lines
1.2 KiB
Groovy
45 lines
1.2 KiB
Groovy
plugins {
|
|
id 'net.consensys.zkevm.kotlin-library-minimal-conventions'
|
|
id 'java-library'
|
|
}
|
|
|
|
def besuVersion="${libs.versions.besu.get()}"
|
|
|
|
dependencies {
|
|
api("${besuArtifactGroup}:besu-datatypes:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
api("${besuArtifactGroup}:besu-evm:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
api("${besuArtifactGroup}.internal:besu-ethereum-core:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
api("${besuArtifactGroup}.internal:besu-crypto-algorithms:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
|
|
api("${besuArtifactGroup}:besu-plugin-api:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
|
|
api("${besuArtifactGroup}.internal:besu-ethereum-rlp:${besuVersion}") {
|
|
transitive = false
|
|
}
|
|
|
|
api("io.tmio:tuweni-bytes:${libs.versions.tuweni.get()}") {
|
|
transitive = false
|
|
}
|
|
|
|
api("io.tmio:tuweni-units:${libs.versions.tuweni.get()}") {
|
|
transitive = false
|
|
}
|
|
|
|
implementation("org.bouncycastle:bcpkix-jdk18on:${libs.versions.bouncycastle.get()}") {
|
|
because "necessary for besu Transaction object that verifies signatures"
|
|
}
|
|
implementation("org.bouncycastle:bcprov-jdk18on:${libs.versions.bouncycastle.get()}") {
|
|
because "necessary for besu Transaction object that verifies signatures"
|
|
}
|
|
}
|