This is an automated email from the ASF dual-hosted git repository.
icexelloss pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 0101468 ARROW-3394: [Java] Remove duplicate dependency in Flight for
grpc-netty
0101468 is described below
commit 0101468e06f6b15b13f5315caefbe8da46b494b6
Author: Bryan Cutler <[email protected]>
AuthorDate: Mon Oct 1 14:44:14 2018 -0400
ARROW-3394: [Java] Remove duplicate dependency in Flight for grpc-netty
This removes the duplicate entry of grpc-netty in the Flight pom, which
leads to the following warning:
```
[WARNING] Some problems were encountered while building the effective model
for org.apache.arrow:arrow-flight:jar:0.11.0-SNAPSHOT
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)'
must be unique: io.grpc:grpc-netty:jar -> duplicate declaration of version
${dep.grpc.version} @ org.apache.arrow:arrow-flight:[unknown-version],
/home/bryan/git/arrow/java/flight/pom.xml, line 55, column 17
```
Author: Bryan Cutler <[email protected]>
Closes #2679 from BryanCutler/java-remove-dup-flight-dep-ARROW-3394 and
squashes the following commits:
453483e5 <Bryan Cutler> remove duplicate dep for grpc-netty
---
java/flight/pom.xml | 6 ------
1 file changed, 6 deletions(-)
diff --git a/java/flight/pom.xml b/java/flight/pom.xml
index 7d4803e..09230c5 100644
--- a/java/flight/pom.xml
+++ b/java/flight/pom.xml
@@ -54,12 +54,6 @@
</dependency>
<dependency>
<groupId>io.grpc</groupId>
- <artifactId>grpc-netty</artifactId>
- <version>${dep.grpc.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
<version>${dep.grpc.version}</version>
<scope>provided</scope>