rdblue commented on a change in pull request #1096:
URL: https://github.com/apache/iceberg/pull/1096#discussion_r438272539
##########
File path: build.gradle
##########
@@ -235,6 +235,65 @@ project(':iceberg-data') {
}
}
+project(':iceberg-flink') {
+ dependencies {
+ compile project(':iceberg-api')
+ compile project(':iceberg-common')
+ compile project(':iceberg-core')
+ compile project(':iceberg-data')
+ compile project(':iceberg-orc')
+ compile project(':iceberg-parquet')
+
+ compileOnly "org.apache.flink:flink-streaming-java_2.11"
+ compileOnly "org.apache.flink:flink-streaming-java_2.11::tests"
+ compileOnly "org.apache.flink:flink-table-api-java-bridge_2.11"
+ compileOnly "org.apache.flink:flink-table-planner-blink_2.11"
+ compileOnly "org.apache.flink:flink-table-planner_2.11"
+ compileOnly "org.apache.hadoop:hadoop-hdfs"
+ compileOnly "org.apache.hadoop:hadoop-common"
+ compileOnly("org.apache.hadoop:hadoop-minicluster") {
+ exclude group: 'org.apache.avro', module: 'avro'
+ }
+
+ testCompile "org.apache.flink:flink-core"
+ testCompile "org.apache.flink:flink-runtime_2.11"
+ testCompile "org.apache.flink:flink-test-utils-junit"
+ testCompile("org.apache.flink:flink-test-utils_2.11") {
+ exclude group: "org.apache.curator", module: 'curator-test'
+ }
+ }
+}
+
+project(':iceberg-flink_2.12') {
Review comment:
There is no source code in flink_2.12, so this module is actually empty.
Like I said in the other comment, let's have one 2.12 module for now to get
this PR in. Then we can figure out how to test compatibility with 2.11 later.
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]