This is an automated email from the ASF dual-hosted git repository. agozhiy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit e8f9b7ee2940984c59783e36e4fbca3fa25d6ad7 Author: ozinoviev <[email protected]> AuthorDate: Fri Feb 14 13:48:50 2020 +0300 DRILL-7586: Fix loading incorrect version of commons-lang3 closes #1984 --- contrib/storage-hive/hive-exec-shade/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contrib/storage-hive/hive-exec-shade/pom.xml b/contrib/storage-hive/hive-exec-shade/pom.xml index 82ebfbc..f6ba72e 100644 --- a/contrib/storage-hive/hive-exec-shade/pom.xml +++ b/contrib/storage-hive/hive-exec-shade/pom.xml @@ -148,6 +148,14 @@ <pattern>com.google.protobuf.</pattern> <shadedPattern>hive.com.google.protobuf.</shadedPattern> </relocation> + <relocation> + <pattern>org.apache.commons.lang.</pattern> + <shadedPattern>hive.org.apache.commons.lang.</shadedPattern> + </relocation> + <relocation> + <pattern>org.apache.commons.lang3.</pattern> + <shadedPattern>hive.org.apache.commons.lang3.</shadedPattern> + </relocation> </relocations> <filters> <filter>
