From 1a5ad1cb04d3aa87fb53d0077ef98f73a15a7d6e Mon Sep 17 00:00:00 2001 From: Pranav Sharma Date: Wed, 10 May 2023 18:29:14 -0400 Subject: [PATCH] Fixes broken pom by removing versionMapping (#242) * Fixes broken pom by removing version mapping The versionMapping block was solely added because the shaded JARs added earlier were supposed to replace the default artifact. Currently the shaded JARs are customized with explicit classifiers which is why explicit versionMapping is not required. * Empty commit to fix a stuck stylecheck presubmit check --- build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.gradle b/build.gradle index a11690bc..60f42339 100644 --- a/build.gradle +++ b/build.gradle @@ -254,11 +254,6 @@ subprojects { version = versionParts.join("-") } } - versionMapping { - allVariants { - fromResolutionResult() - } - } pom { name = 'OpenTelemetry Operations Java' url = 'https://github.com/GoogleCloudPlatform/opentelemetry-operations-java'