This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris-spark-connector.git
commit 576a133b9996616bed6e6c99e47986dcca235f3d Author: vinson0526 <vinson0...@users.noreply.github.com> AuthorDate: Wed Jan 15 21:08:34 2020 +0800 Update arrow's version to 0.15.1 and shaded it in spark-doris-connector (#2769) --- pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c8cd0e0..35986ad 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ <scala.version>2.11</scala.version> <spark.version>2.3.4</spark.version> <libthrift.version>0.9.3</libthrift.version> - <arrow.version>0.8.0</arrow.version> + <arrow.version>0.15.1</arrow.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> @@ -59,7 +59,6 @@ <groupId>org.apache.arrow</groupId> <artifactId>arrow-vector</artifactId> <version>${arrow.version}</version> - <scope>provided</scope> </dependency> <!--Test--> @@ -138,6 +137,49 @@ </configuration> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.2.1</version> + <configuration> + <artifactSet> + <excludes> + <exclude>com.google.code.findbugs:*</exclude> + <exclude>org.slf4j:*</exclude> + </excludes> + </artifactSet> + <relocations> + <relocation> + <pattern>org.apache.arrow</pattern> + <shadedPattern>org.apache.doris.arrow</shadedPattern> + </relocation> + <relocation> + <pattern>io.netty</pattern> + <shadedPattern>org.apache.doris.netty</shadedPattern> + </relocation> + <relocation> + <pattern>com.fasterxml.jackson</pattern> + <shadedPattern>org.apache.doris.jackson</shadedPattern> + </relocation> + <relocation> + <pattern>org.apache.commons.codec</pattern> + <shadedPattern>org.apache.doris.commons.codec</shadedPattern> + </relocation> + <relocation> + <pattern>com.google.flatbuffers</pattern> + <shadedPattern>org.apache.doris.flatbuffers</shadedPattern> + </relocation> + </relocations> + </configuration> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.8</version> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org