Files
linea-monorepo/besu-plugins/linea-sequencer/gradle/dependency-management.gradle
Alain Nicolas a3ad42a072 chore(license): update licensing (#1106)
* chore(license): update licensing

* chore(license): update licensing on Java files
2025-06-09 11:53:04 +02:00

71 lines
2.1 KiB
Groovy

/*
* Copyright Consensys Software Inc.
*
* This file is dual-licensed under either the MIT license or Apache License 2.0.
* See the LICENSE-MIT and LICENSE-APACHE files in the repository root for details.
*
* SPDX-License-Identifier: MIT OR Apache-2.0
*/
repositories {
maven {
url "https://artifacts.consensys.net/public/linea-besu/maven/"
content {
includeGroupByRegex('io\\.consensys\\..*')
includeGroupByRegex('org\\.hyperledger\\..*')
}
}
maven {
url 'https://hyperledger.jfrog.io/hyperledger/besu-maven'
content { includeGroupByRegex('org\\.hyperledger\\..*') }
}
maven {
url 'https://artifacts.consensys.net/public/maven/maven/'
content {
includeGroupByRegex('tech\\.pegasys(\\..*)?')
}
}
maven {
url "https://artifacts.consensys.net/public/linea-arithmetization/maven/"
content {
includeGroupByRegex('net\\.consensys\\.linea\\..*?')
}
}
maven {
url 'https://splunk.jfrog.io/splunk/ext-releases-local'
content { includeGroupByRegex('com\\.splunk\\..*') }
}
mavenCentral()
mavenLocal()
}
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
applyMavenExclusions = false
generatedPomCustomization {
enabled = false
}
imports {
mavenBom "${besuArtifactGroup}:bom:${libs.versions.besu.get()}"
}
dependencies {
dependencySet(group: "net.consensys.linea.zktracer", version: "${libs.versions.arithmetization.get()}") {
entry "arithmetization"
}
dependency "com.google.code.gson:gson:${libs.versions.gson.get()}"
dependency "io.tmio:tuweni-bytes:${libs.versions.tuweni.get()}"
dependency "io.tmio:tuweni-units:${libs.versions.tuweni.get()}"
dependency "io.tmio:tuweni-toml:${libs.versions.tuweni.get()}"
// ToDo: remove when fixed in Besu, force version to avoid conflict with previous version
dependency "org.apache.logging.log4j:log4j-api:${libs.versions.log4j.get()}"
dependency "org.apache.logging.log4j:log4j-core:${libs.versions.log4j.get()}"
dependency "org.wiremock:wiremock:${libs.versions.wiremock.get()}"
}
}