Skip to content

Commit

Permalink
Adding missing dependencies from exclusion api (#221)
Browse files Browse the repository at this point in the history
* Adding missing dependencies from exclusion api

* coordinator: switch tuweni to io.tmio fork

---------

Co-authored-by: Pedro Novais <1478752+jpnovais@users.noreply.github.com>
  • Loading branch information
Filter94 and jpnovais authored Oct 22, 2024
1 parent cd58916 commit 04857a0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ dependencies {
exclude group: 'tech.pegasys.teku.internal', module: 'metrics'
exclude group: 'tech.pegasys.teku.internal', module: 'time'
}
implementation "org.apache.tuweni:tuweni-units:${libs.versions.tuweni.get()}"

implementation "io.tmio:tuweni-units:${libs.versions.tuweni.get()}"
//</utils>

//<logging>
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ netty = "4.1.92.Final"
picoli = "4.7.1"
restassured = "5.3.0"
teku = "23.1.1"
tuweni = "2.3.1"
tuweni = "2.4.2"
vertx = "4.5.0"
web3j = "4.12.0"
wiremock = "3.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ package net.consensys.linea.jsonrpc.client

import java.util.concurrent.atomic.AtomicLong
import java.util.function.Supplier
import javax.annotation.concurrent.ThreadSafe

@ThreadSafe
class SequentialIdSupplier : Supplier<Any> {
private var id = AtomicLong(0)

Expand Down
2 changes: 1 addition & 1 deletion jvm-libs/linea/core/domain-models/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

dependencies {
implementation project(":jvm-libs:generic:extensions:kotlin")
implementation "org.apache.tuweni:tuweni-units:${libs.versions.tuweni.get()}"
implementation "io.tmio:tuweni-units:${libs.versions.tuweni.get()}"
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion jvm-libs/linea/core/traces/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

dependencies {
implementation "org.apache.tuweni:tuweni-units:${libs.versions.tuweni.get()}"
implementation "io.tmio:tuweni-units:${libs.versions.tuweni.get()}"
implementation project(':jvm-libs:generic:extensions:kotlin')
testImplementation project(':jvm-libs:linea:testing:file-system')
testImplementation "com.sksamuel.hoplite:hoplite-core:${libs.versions.hoplite.get()}"
Expand Down

0 comments on commit 04857a0

Please sign in to comment.