Skip to content

Commit

Permalink
[FLINK-10107] [e2e] Exclude conflicting SQL JARs from test
Browse files Browse the repository at this point in the history
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 apache#6528.
  • Loading branch information
twalthr committed Aug 9, 2018
1 parent 3787a57 commit 764da81
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flink-end-to-end-tests/flink-sql-client-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,27 +153,29 @@ 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>
<version>${project.version}</version>
<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>
Expand Down

0 comments on commit 764da81

Please sign in to comment.