This is an automated email from the ASF dual-hosted git repository.
rickyma pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 34b5187fd [MINOR] improvement(client): Rename rss.shade.packageName
from org.apache.uniffle to org.apache.uniffle.shaded (#1883)
34b5187fd is described below
commit 34b5187fdf2959e543be75b2bf82824400bba60b
Author: maobaolong <[email protected]>
AuthorDate: Wed Jul 10 11:42:19 2024 +0800
[MINOR] improvement(client): Rename rss.shade.packageName from
org.apache.uniffle to org.apache.uniffle.shaded (#1883)
### What changes were proposed in this pull request?
Change the default value of `rss.shade.packageName` from
`org.apache.uniffle` to `org.apache.uniffle.shaded`.
### Why are the changes needed?
Without this change, we cannot distinguish a class is relocated to
`org.apache.uniffle.xxx` or named `org.apache.uniffle.xxx` originally.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Not needed.
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 9dacdcc1a..d5e4747d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,7 +91,7 @@
<prometheus.simpleclient.version>0.9.0</prometheus.simpleclient.version>
<protobuf.version>3.25.1</protobuf.version>
<roaring.bitmap.version>0.9.15</roaring.bitmap.version>
- <rss.shade.packageName>org.apache.uniffle</rss.shade.packageName>
+ <rss.shade.packageName>org.apache.uniffle.shaded</rss.shade.packageName>
<skipDeploy>false</skipDeploy>
<slf4j.version>1.7.36</slf4j.version>
<spotbugs.version>4.7.0</spotbugs.version>