bowenli86 commented on a change in pull request #8987: [FLINK-13090][hive] Test
Hive connector with hive runner
URL: https://github.com/apache/flink/pull/8987#discussion_r301208374
##########
File path: flink-connectors/flink-connector-hive/pom.xml
##########
@@ -368,6 +368,95 @@ under the License.
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.klarna</groupId>
+ <artifactId>hiverunner</artifactId>
+ <version>${hiverunner.version}</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-serde</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-jdbc</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive.hcatalog</groupId>
+ <artifactId>hive-webhcat-java-client</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-service</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-contrib</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.tez</groupId>
+ <artifactId>tez-dag</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.tez</groupId>
+ <artifactId>tez-common</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.tez</groupId>
+ <artifactId>tez-mapreduce</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <!-- We have 0.9.10 in dependency management but hiverunner
requires 0.9.8, so need to explicitly specify it here -->
+ <dependency>
+ <groupId>org.reflections</groupId>
+ <artifactId>reflections</artifactId>
+ <version>0.9.8</version>
Review comment:
minor: can we move the version to `<properties>` too?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services