This is an automated email from the ASF dual-hosted git repository.
twalthr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 764da81 [FLINK-10107] [e2e] Exclude conflicting SQL JARs from test
764da81 is described below
commit 764da8183b6dfd0fe00eebe96fb619ca8d096047
Author: Timo Walther <[email protected]>
AuthorDate: Thu Aug 9 10:58:36 2018 +0200
[FLINK-10107] [e2e] Exclude conflicting SQL JARs from test
This is a temporary solution for fixing the SQL Client end-to-end
test for releases. For now, we do not include conflicting
SQL JARs in library folder of the test.
This closes #6528.
---
flink-end-to-end-tests/flink-sql-client-test/pom.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/flink-end-to-end-tests/flink-sql-client-test/pom.xml
b/flink-end-to-end-tests/flink-sql-client-test/pom.xml
index ec5a0e1..6e69568 100644
--- a/flink-end-to-end-tests/flink-sql-client-test/pom.xml
+++ b/flink-end-to-end-tests/flink-sql-client-test/pom.xml
@@ -153,13 +153,14 @@ under the License.
<classifier>sql-jar</classifier>
<type>jar</type>
</artifactItem>
+ <!-- This SQL
JAR is not used for now to avoid dependency conflicts; see FLINK-10107.
<artifactItem>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-kafka-0.9_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<classifier>sql-jar</classifier>
<type>jar</type>
- </artifactItem>
+
</artifactItem>-->
<artifactItem>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-kafka-0.10_${scala.binary.version}</artifactId>
@@ -167,13 +168,14 @@ under the License.
<classifier>sql-jar</classifier>
<type>jar</type>
</artifactItem>
+ <!-- This SQL
JAR is not used for now to avoid dependency conflicts; see FLINK-10107.
<artifactItem>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-kafka-0.11_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<classifier>sql-jar</classifier>
<type>jar</type>
- </artifactItem>
+
</artifactItem>-->
</artifactItems>
</configuration>
</execution>