This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.11 by this push:
new ce270cd [FLINK-18697][table-api] Add the missing test scope to the
flink-streaming-java_2.11:test-jar dependency
ce270cd is described below
commit ce270cd53630a176cc41098a1fee91bed0a274e5
Author: Jark Wu <[email protected]>
AuthorDate: Fri Jul 24 19:31:12 2020 +0800
[FLINK-18697][table-api] Add the missing test scope to the
flink-streaming-java_2.11:test-jar dependency
This closes #12977
---
flink-table/flink-table-api-java-bridge/pom.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/flink-table/flink-table-api-java-bridge/pom.xml
b/flink-table/flink-table-api-java-bridge/pom.xml
index f8f4302..94b250e 100644
--- a/flink-table/flink-table-api-java-bridge/pom.xml
+++ b/flink-table/flink-table-api-java-bridge/pom.xml
@@ -72,15 +72,16 @@ under the License.
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java_${scala.binary.version}</artifactId>
- <type>test-jar</type>
<version>${project.version}</version>
+ <type>test-jar</type>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-runtime_${scala.binary.version}</artifactId>
<version>${project.version}</version>
- <scope>test</scope>
<type>test-jar</type>
+ <scope>test</scope>
</dependency>
<dependency>