You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2016/12/21 20:23:38 UTC

[30/50] incubator-beam git commit: [BEAM-1165] Fix unexpected file creation when checking dependencies

[BEAM-1165] Fix unexpected file creation when checking dependencies

This error happens because maven-dependency-plugin asumes the property output
used by the flink tests as the export file for the depedency:tree
command.

Ref.
https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#output


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/9bd4288f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/9bd4288f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/9bd4288f

Branch: refs/heads/gearpump-runner
Commit: 9bd4288f13ac3f279b795e93adcfa3f897ef266c
Parents: 1e148cd
Author: Isma�l Mej�a <ie...@gmail.com>
Authored: Thu Dec 15 22:06:18 2016 +0100
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Mon Dec 19 10:09:10 2016 +0100

----------------------------------------------------------------------
 runners/flink/examples/pom.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/9bd4288f/runners/flink/examples/pom.xml
----------------------------------------------------------------------
diff --git a/runners/flink/examples/pom.xml b/runners/flink/examples/pom.xml
index 3145848..c50a293 100644
--- a/runners/flink/examples/pom.xml
+++ b/runners/flink/examples/pom.xml
@@ -34,9 +34,9 @@
 
   <properties>
     <!-- Default parameters for mvn exec:java -->
-    <input>kinglear.txt</input>
-    <output>wordcounts.txt</output>
-    <parallelism>-1</parallelism>
+    <flink.examples.input>kinglear.txt</flink.examples.input>
+    <flink.examples.output>wordcounts.txt</flink.examples.output>
+    <flink.examples.parallelism>-1</flink.examples.parallelism>
   </properties>
 
   <profiles>
@@ -112,9 +112,9 @@
           <executable>java</executable>
           <arguments>
             <argument>--runner=org.apache.beam.runners.flink.FlinkRunner</argument>
-            <argument>--parallelism=${parallelism}</argument>
-            <argument>--input=${input}</argument>
-            <argument>--output=${output}</argument>
+            <argument>--parallelism=${flink.examples.parallelism}</argument>
+            <argument>--input=${flink.examples.input}</argument>
+            <argument>--output=${flink.examples.output}</argument>
           </arguments>
         </configuration>
       </plugin>