From dede2c6d1e82d9e5f2566bf2b50dbce758495f89 Mon Sep 17 00:00:00 2001 From: Danno Ferrin Date: Wed, 10 Feb 2021 19:04:27 -0700 Subject: [PATCH] Artifactory Migration Snapshot Location (#1901) Don't store snapshots in a different groupID. Needed for downstream tooling. Signed-off-by: Danno Ferrin --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3c8ecc172d..d6f81b2fb4 100644 --- a/build.gradle +++ b/build.gradle @@ -576,7 +576,7 @@ distZip { publishing { publications { distArtifactory(MavenPublication) { - groupId (version.contains('SNAPSHOT') ? 'SNAPSHOT' : '.') + groupId = '.' version = project.version artifactId = 'besu' artifact("$buildDir/distributions/besu-${project.version}.zip")