This is an automated email from the ASF dual-hosted git repository.

thw 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 4250819  [FLINK-9007] [kinesis] [e2e] Build Kinesis test under 
include-kinesis profile
4250819 is described below

commit 425081951162a2a5ea027cc8ee3137c688f3aada
Author: Thomas Weise <t...@apache.org>
AuthorDate: Sun Mar 17 11:23:24 2019 -0700

    [FLINK-9007] [kinesis] [e2e] Build Kinesis test under include-kinesis 
profile
---
 flink-end-to-end-tests/pom.xml | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/flink-end-to-end-tests/pom.xml b/flink-end-to-end-tests/pom.xml
index 9f77483..c6674f4 100644
--- a/flink-end-to-end-tests/pom.xml
+++ b/flink-end-to-end-tests/pom.xml
@@ -66,9 +66,29 @@ under the License.
                <module>flink-streaming-kafka-test</module>
                <module>flink-streaming-kafka011-test</module>
                <module>flink-streaming-kafka010-test</module>
-               <module>flink-streaming-kinesis-test</module>
        </modules>
 
+       <!-- See main pom.xml for explanation of profiles -->
+       <profiles>
+               <!--
+                       We include the kinesis module only optionally because 
it contains a dependency
+                       licenced under the "Amazon Software License".
+                       In accordance with the discussion in 
https://issues.apache.org/jira/browse/LEGAL-198
+                       this is an optional module for Flink.
+               -->
+               <profile>
+                       <id>include-kinesis</id>
+                       <activation>
+                               <property>
+                                       <name>include-kinesis</name>
+                               </property>
+                       </activation>
+                       <modules>
+                               <module>flink-streaming-kinesis-test</module>
+                       </modules>
+               </profile>
+       </profiles>
+
        <build>
                <plugins>
                        <plugin>

Reply via email to