From 6df40af630dcf1d4a67f5e681e1099fb4fcb8003 Mon Sep 17 00:00:00 2001 From: Fabio Di Fabio Date: Tue, 22 Oct 2024 17:21:52 +0200 Subject: [PATCH] Publish BOM to correct repo Signed-off-by: Fabio Di Fabio --- platform/build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/platform/build.gradle b/platform/build.gradle index e42d3e0774b..9d4b31d6edb 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -191,13 +191,13 @@ publishing { publications { mavenPlatform(MavenPublication) { from components.javaPlatform - groupId "org.hyperledger.besu" + groupId "io.consensys.linea-besu" artifactId 'bom' version calculateVersion() pom { - name = "Besu BOM" - url = 'http://github.com/hyperledger/besu' + name = "Linea Besu BOM" + url = 'https://github.com/ConsenSys/linea-besu' licenses { license { name = 'The Apache License, Version 2.0' @@ -205,9 +205,9 @@ publishing { } } scm { - connection = 'scm:git:git://github.com/hyperledger/besu.git' - developerConnection = 'scm:git:ssh://github.com/hyperledger/besu.git' - url = 'https://github.com/hyperledger/besu' + connection = 'scm:git:git://github.com/ConsenSys/linea-besu.git' + developerConnection = 'scm:git:ssh://github.com/ConsenSys/linea-besu.git' + url = 'https://github.com/ConsenSys/linea-besu' } } }