From 6f9975b40b32a82c400c598cbf342545924f960b Mon Sep 17 00:00:00 2001 From: Louis Bergelson Date: Mon, 13 Mar 2017 17:18:25 -0400 Subject: [PATCH] fixed shaded package name Fixed the maven shade command so it produces a valid shaded package name. It was producing shaded.cloud-nio.* which is not a valid java package and causes compilation errors when trying to import those packages. This is problematic since the shaded packages are exposed in the API, so methods that exposed them were unusable by client code. Shading now produces shading.cloud_nio.* which is valid --- google-cloud-contrib/google-cloud-nio/pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/google-cloud-contrib/google-cloud-nio/pom.xml b/google-cloud-contrib/google-cloud-nio/pom.xml index e65ec01f6462..357b9dfaade4 100644 --- a/google-cloud-contrib/google-cloud-nio/pom.xml +++ b/google-cloud-contrib/google-cloud-nio/pom.xml @@ -103,7 +103,7 @@ com - shaded.cloud-nio.com + shaded.cloud_nio.com com.google.cloud.** com.google.auto.** @@ -111,19 +111,19 @@ org - shaded.cloud-nio.org + shaded.cloud_nio.org io - shaded.cloud-nio.io + shaded.cloud_nio.io okio - shaded.cloud-nio.okio + shaded.cloud_nio.okio google - shaded.cloud-nio.google + shaded.cloud_nio.google