mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
* Revert "Revert "Update Tuweni to 2.4.1 (#5513)" (#5585)"
This reverts commit 6111e1bbc3.
Signed-off-by: Antoine Toulme <antoine@lunar-ocean.com>
* update Tuweni to 2.4.2
Signed-off-by: Antoine Toulme <antoine@lunar-ocean.com>
---------
Signed-off-by: Antoine Toulme <antoine@lunar-ocean.com>
29 lines
1018 B
Groovy
29 lines
1018 B
Groovy
dependencies {
|
|
api project(':util')
|
|
api project(':crypto:algorithms')
|
|
api 'org.slf4j:slf4j-api'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
implementation 'com.google.guava:guava'
|
|
implementation 'io.vertx:vertx-core'
|
|
implementation 'io.vertx:vertx-web'
|
|
implementation 'io.tmio:tuweni-net'
|
|
|
|
runtimeOnly('org.bouncycastle:bcpkix-jdk18on')
|
|
|
|
// test dependencies.
|
|
testImplementation project(':testutil')
|
|
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
// integration test dependencies.
|
|
integrationTestImplementation project(':testutil')
|
|
integrationTestImplementation 'org.assertj:assertj-core'
|
|
integrationTestImplementation 'org.bouncycastle:bcpkix-jdk18on'
|
|
integrationTestImplementation 'org.awaitility:awaitility'
|
|
integrationTestImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
integrationTestImplementation 'org.mockito:mockito-core'
|
|
integrationTestImplementation 'org.testcontainers:testcontainers'
|
|
}
|