From 7e62878abf5ec6f18c8216414be8404da0870324 Mon Sep 17 00:00:00 2001 From: Robert Metzger Date: Fri, 11 Jul 2014 09:28:12 +0200 Subject: [PATCH] Set version to 0.6-incubating-SNAPSHOT and update Readme --- README.md | 173 ++---------------- flink-addons/avro/pom.xml | 2 +- .../avro/src/test/resources/testdata.avro | Bin 5276 -> 4572 bytes flink-addons/hadoop-compatibility/pom.xml | 2 +- flink-addons/hbase/pom.xml | 2 +- flink-addons/jdbc/pom.xml | 2 +- flink-addons/pom.xml | 2 +- flink-addons/spargel/pom.xml | 2 +- flink-addons/yarn/pom.xml | 2 +- flink-clients/pom.xml | 2 +- flink-compiler/pom.xml | 2 +- flink-core/pom.xml | 2 +- flink-dist/pom.xml | 2 +- .../main/flink-bin/yarn-bin/yarn-session.sh | 2 +- flink-examples/flink-java-examples/pom.xml | 2 +- flink-examples/flink-scala-examples/pom.xml | 2 +- flink-examples/pom.xml | 2 +- flink-java/pom.xml | 2 +- flink-quickstart/pom.xml | 2 +- flink-quickstart/quickstart-SNAPSHOT.sh | 2 +- flink-quickstart/quickstart-java/pom.xml | 2 +- .../resources/archetype-resources/pom.xml | 4 +- flink-quickstart/quickstart-scala-SNAPSHOT.sh | 2 +- flink-quickstart/quickstart-scala/pom.xml | 2 +- .../resources/archetype-resources/pom.xml | 4 +- flink-runtime/pom.xml | 2 +- flink-scala/pom.xml | 2 +- flink-test-utils/pom.xml | 2 +- flink-tests/pom.xml | 2 +- pom.xml | 2 +- 30 files changed, 45 insertions(+), 188 deletions(-) diff --git a/README.md b/README.md index da7f193ca81..3b192d361c7 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,16 @@ -# Stratosphere +# Apache Flink (incubating) -_"Big Data looks tiny from Stratosphere."_ -Stratosphere is a next-generation Big Data Analytics Platform. It combines the strengths of MapReduce/Hadoop with powerful programming abstractions in Java and Scala, and a high performance runtime. Stratosphere has native support for iterations, delta iterations, and programs consisting of workflows of many operations. +Apache Flink is an open source system for expressive, declarative, fast, and efficient data analysis. Stratosphere combines the scalability and programming flexibility of distributed MapReduce-like platforms with the efficiency, out-of-core execution, and query optimization capabilities found in parallel databases. -Learn more about Stratosphere at http://stratosphere.eu -## Start writing a Stratosphere Job -If you just want to get started with Stratosphere, use the following command to set up an empty Stratosphere Job +Learn more about Flink at http://flink.incubator.apache.org/ -``` -curl https://raw.github.com/stratosphere/stratosphere-quickstart/master/quickstart.sh | bash -``` -The quickstart sample contains everything to develop a Stratosphere Job on your computer and run it in a local embedded runtime. No setup needed. -Further quickstart guides are at http://stratosphere.eu/quickstart/ - -## Build Stratosphere -Below are three short tutorials that guide you through the first steps: Building, running and developing. +## Build Apache Flink ### Build From Source -This tutorial shows how to build Stratosphere on your own system. Please open a bug report if you have any troubles! #### Requirements * Unix-like environment (We use Linux, Mac OS X, Cygwin) @@ -30,169 +19,37 @@ This tutorial shows how to build Stratosphere on your own system. Please open a * Java 6, 7 or 8 (Note that Oracle's JDK 6 library will fail to build Stratosphere, but is able to run a pre-compiled package without problem) ``` -git clone https://github.com/stratosphere/stratosphere.git -cd stratosphere -mvn -DskipTests clean package # this will take up to 5 minutes +git clone https://github.com/apache/incubator-flink.git +cd incubator-flink +mvn clean package -DskipTests # this will take up to 5 minutes ``` -Stratosphere is now installed in `stratosphere-dist/target` -If you’re a Debian/Ubuntu user, you’ll find a .deb package. We will continue with the generic case. - - cd stratosphere-dist/target/stratosphere-dist-0.5-SNAPSHOT-bin/stratosphere-0.5-SNAPSHOT/ - -The directory structure here looks like the contents of the official release distribution. - -#### Build for different Hadoop Versions -This section is for advanced users that want to build Stratosphere for a different Hadoop version, for example for Hadoop Yarn support. - -We use the profile activation via properties (-D). - -##### Build hadoop v1 (default) -Build the default (currently hadoop 1.2.1) -```mvn clean package``` - -Build for a specific hadoop v1 version -```mvn -Dhadoop-one.version=1.1.2 clean package``` - -##### Build hadoop v2 (yarn) - -Build the yarn using the default version defined in the pom -```mvn -Dhadoop.profile=2 clean package``` - -Build for a specific hadoop v1 version -```mvn -Dhadoop.profile=2 -Dhadoop-two.version=2.1.0-beta clean package``` - -It is necessary to generate separate POMs if you want to deploy to your local repository (`mvn install`) or somewhere else. -We have a script in `/tools` that generates POMs for the profiles. Use -```mvn -f pom.hadoop2.xml clean install -DskipTests``` -to put a POM file with the right dependencies into your local repository. - - -### Run your first program - -We will run a simple “Word Count” example. -The easiest way to start Stratosphere on your local machine is so-called "local-mode": - - ./bin/start-local.sh - -Get some test data: - - wget -O hamlet.txt http://www.gutenberg.org/cache/epub/1787/pg1787.txt - -Start the job: - - ./bin/stratosphere run --jarfile ./examples/stratosphere-java-examples-0.5-SNAPSHOT-WordCount.jar --arguments 1 file://`pwd`/hamlet.txt file://`pwd`/wordcount-result.txt - -You will find a file called `wordcount-result.txt` in your current directory. - -#### Alternative Method: Use the webclient interface -(And get a nice execution plan overview for free!) - - ./bin/start-local.sh - ./bin/start-webclient.sh start - -Get some test data: - wget -O ~/hamlet.txt http://www.gutenberg.org/cache/epub/1787/pg1787.txt +Flink is now installed in `flink-dist/target` -* Point your browser to to http://localhost:8080/launch.html. Upload the WordCount.jar using the upload form in the lower right box. The jar is located in `./examples/stratosphere-java-examples-0.5-SNAPSHOT-WordCount.jar`. -* Select the WordCount jar from the list of available jars (upper left). -* Enter the argument line in the lower-left box: `1 file:///hamlet.txt file:///wordcount-result.txt` -* Hit “Run Job” - - -### Eclipse Setup and Debugging - -To contribute back to the project or develop your own jobs for Stratosphere, you need a working development environment. We use Eclipse and IntelliJ for development. Here we focus on Eclipse. - -If you want to work on the scala code you will need the following plugins: - -Eclipse 4.x: - * scala-ide: http://download.scala-ide.org/sdk/e38/scala210/stable/site - * m2eclipse-scala: http://alchim31.free.fr/m2e-scala/update-site - * build-helper-maven-plugin: https://repository.sonatype.org/content/repositories/forge-sites/m2e-extras/0.15.0/N/0.15.0.201206251206/ - -Eclipse 3.7: - * scala-ide: http://download.scala-ide.org/sdk/e37/scala210/stable/site - * m2eclipse-scala: http://alchim31.free.fr/m2e-scala/update-site - * build-helper-maven-plugin: https://repository.sonatype.org/content/repositories/forge-sites/m2e-extras/0.14.0/N/0.14.0.201109282148/ - -When you don't have the plugins your project will have build errors, you can just close the scala projects and ignore them. -o -Import the Stratosphere source code using Maven's Import tool: - * Select "Import" from the "File"-menu. - * Expand "Maven" node, select "Existing Maven Projects", and click "next" button - * Select the root directory by clicking on the "Browse" button and navigate to the top folder of the cloned Stratosphere Git repository. - * Ensure that all projects are selected and click the "Finish" button. - -Create a new Eclipse Project that requires Stratosphere in its Build Path! - -Use this skeleton as an entry point for your own Jobs: It allows you to hit the “Run as” -> “Java Application” feature of Eclipse: - -```java -public class Tutorial implements Program { - - @Override - public Plan getPlan(String... args) { - // your parallel program goes here - } - - public static void main(String[] args) throws Exception { - Tutorial tut = new Tutorial(); - Plan toExecute = tut.getPlan(args); - long runtime = LocalExecutor.execute(toExecute); - System.out.println("Runime: " + runtime); - } -} -``` ## Support Don’t hesitate to ask! -[Open an issue](https://github.com/stratosphere/stratosphere/issues/new) on Github, if you found a bug or need any help. -We also have a [mailing list](https://groups.google.com/d/forum/stratosphere-dev) for both users and developers. +Please contact the developers on our [mailing lists](http://flink.incubator.apache.org/community.html#mailing-lists) if you need help. -Some of our colleagues are also in the #dima irc channel on freenode. +[Open an issue](https://issues.apache.org/jira/browse/FLINK) if you found a bug in Flink. -## Documentation -The [Documentation Website](http://stratosphere.eu/docs/0.4/) has comprehensive documentation for users and contributors. -The [0.5 version documentation page](http://stratosphere.eu/docs/0.5/) describe new features and changes in 0.5 version. -The [GitHub Wiki](https://github.com/stratosphere/stratosphere/wiki/_pages) has a collection of topics that are in the process of being fleshed out. +## Documentation -Please make edits to the Wiki if you find inconsistencies or [Open an issue](https://github.com/stratosphere/stratosphere/issues/new) +The documentation of Apache Flink is located on the website: http://flink.incubator.apache.org or in the `docs/` directory of the source code. ## Fork and Contribute This is an active open-source project. We are always open to people who want to use the system or contribute to it. Contact us if you are looking for implementation tasks that fit your skills. - -We have a list of [starter jobs](https://github.com/stratosphere/stratosphere/wiki/Starter-Jobs) in our wiki. - -We use the GitHub Pull Request system for the development of Stratosphere. Just open a request if you want to contribute. - -### What to contribute -* Bug reports -* Bug fixes -* Documentation -* Tools that ease the use and development of Stratosphere -* Well-written Stratosphere jobs +This article describes [how to contribute to Apache Flink](http://flink.incubator.apache.org/how-to-contribute.html). -Let us know if you have created a system that uses Stratosphere, so that we can link to you. - ## About -[Stratosphere](http://www.stratosphere.eu) is a DFG-founded research project. -We combine cutting edge research outcomes with a stable and usable codebase. -Decisions are not made behind closed doors. We discuss all changes and plans on our Mailinglists and on GitHub. - - - - - - +Apache Flink is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. +The Apache Flink project originated from the [Stratosphere](http://stratosphere.eu) research project. diff --git a/flink-addons/avro/pom.xml b/flink-addons/avro/pom.xml index 74136dbcb2b..9e5851fb718 100644 --- a/flink-addons/avro/pom.xml +++ b/flink-addons/avro/pom.xml @@ -8,7 +8,7 @@ flink-addons org.apache.flink - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/avro/src/test/resources/testdata.avro b/flink-addons/avro/src/test/resources/testdata.avro index 0372b0d61e29c67a233ce3bd44886657e176e8b4..45308b9135c443f73c362c040d9cb78192f4abf0 100644 GIT binary patch delta 1699 zcmZ8iXr!fPe%-Fcv7#T&NN(Py_`OuoVa}F%a3J1VM^LiWOSG zixttZ*0QN!L_id4j|+?)G$WJ>+BP6-SZdWWN;^7lzV>%N-gC}9=lqv@X2WA!^KJ1m zJ$;L~0~x9OOo=p69(Rsju3?q)T}ee^ra~5%adGzwJ+r5D-_xD7+f1yjdMaXU89ygf z<03t8qOCrq@cKA@pyy4Nh4Vk;ZMldo^*N%$1M?3Tkn=9+kwdEwAHK=;hO^KDEt2$4 z!!z_Zrc6dZL|kZwYN&!^2ScDH(FeH*E6rV%|LSVTNA;bo8*_HvnGTvo>@?^OqayQj z;2IP_CG%yH%hl4$cue1du8CZKbPnqqc(FPPCEA`I9WsLxN-FLolnBc6UVkz?f+Ysd zdb5*?la<(~qEFQGlqORG*`Z+9BOuV_5~$}0M?8MG#h8mHG0 zN}xyx9iiyZ@@>;c$O68iM(;{VkV3cObk3_~-Y{ANwN#N_==Fg*pFFwwv&eI*d0a$y zC3WAeX=h$}h;PyDiBYj%Q2Ho-L3bcjjMyKX7qJ7uA(rlZtgIfx5rlxeKY4<4YgmU* z5Vnq8t0ne<185^0PlSp{sM;$}iq4GQv;PoOQl~l~5c&t`jG`gDNI25^Z`l8aIiwA} zG-mK0KjL7LMZ341JB8(>CGkAbPO6>6zu;e6(Y~}uz)o=o;)1g5Or+85BW16iaK2Zfp|u;g%Hwhh~Xb zi#7#7vn&m|Qa|{ZO0R>)J>uk9@zOXm_ z%fM|C%T@}!YU8KJz6dHqe7K@ixckX66AnP#yAlc1Z<7m>{IcbPFW0|Wv4~b>9097=huw0n@BjP9L`9pOYG(t@>d<_*5&<-_0 z(Dl;#&!95PtJuoKGoq=nsDE!yC*poW@v0Td+@nK46(61q$2FR6sZH1bg;*;^#HQRd zIF{rQNYS{(Vd;z8jJFo3n^L#{XEyT!pg5GGW~)>bRn%EQ%;38w*6%<3<)XqmWB}Py z8>!kG370{g0(Hu*&=l)bmlo;q^N~5k4T+^R2Un@?iZ{o?C1}6r_VlNltSRit@Ns#e zWL|y#16l>wc!z9|)(x~S7u3QqpN-H4I3zw{+^#j`LFsQ;^tSI>ZPv_|2KEB7$fX`uQ=BUR zwXShOy=8VBH@?kr{#N=~VTw!eyB<&zGq`xu z=HM*WW4e_G=vpQ2hRP~r}ph;Od<}CvLxjWw;giD)(`dw zpl$2zK$+$IBizU25@nr-uN#l!S4=K#$ca0HZB2b`hyE-rKOfPL>?7kLUzwE`4lOCv z&I?>OM0q}cKa;`L&Eis17V({^Hp*}acbK}8-Fmhs+0_g9nW_8gGLz{!#DsdGFGYbP zX@4D&1zfm;x0-S3`Edf@0i0YeE-eJ2x7xwXpW(}t3>ZnHLhIn{=9GA z{0WXTU(Y(0#WM2m)*v&vG+K-z6bHSYO4emhD&}#kxvP6cTbJ|hyE+QgiWsO9d2WXu zsRyk;D*X2uWcN`n3JT}N%Ajx;4~|126tu+elM~P8vHdE4%X58ezyIYCdh751%>Muk C#V*VM delta 2464 zcmai0TTqi%5at#x0RkdWKtu?UTf&_N3Y0&{B?y#@B61NSgi8R!EmQ&o5W!jjt9VeT z3KfB=qE(?P6wP$H?M(YnTc>^LOl|e05AAg7bD!E>&o4}$I@z;(_S-$TJ$v@gv(T%N z-o^E;wsyX{sbOGn7VhPzqM;$^Kokl#?4Z>1p%N~HfKm*dH3BB#bRyg@ z5yYi;pjq&R4=~{C#~KW<(SyJMA44k&0dNgxw}Let7Se}|I}t1AX5{RpLo6LS0GoJH zwpS8HJI~E5=pv6&Nw^zISsgMJ0Yj2tF-|pR)CpRW#EGMWIYQvil2A2DAAMLp3Lyb5 zG{ST_Ty8NoRhg=4-yMWm{LO30%1I*5%fcKZhB-vR5^SU??drC8=O~!z(7_d0gcGo| zf2hlZ*LbENy9Ir!u{D!#1l(3@O>if^24?a#aH*gz86G^@j6~Z3IXOgC)WRyJO+jN! z9-M)36EsclU8^Uwb>;jmf1q!ilCtV)vb+UA92>n{y0lDx)pg{9F{Y<2~HY zG%mZu1JDJtIu}1t?I6|SvWwEPFf~eapLa>53-J-RQ%Fufxg^oEo~c#Li1I-$W^?rbI&$5?Wwc3u8TSGA>JFh^&OsNIiTE zH#;Z`letqY3ih{DPFLEily}hnncOvn_Egx9EU}FcovT0XiOyYs&5y7V*OdQUH-!L6 zkRQeSxCQ6cRYfpYU)BZ}5PiB~2q}GKMbir0uyn$BQ*u6*l@+o2p;2bTJ0_HX= zs;94;0$b4!=a4h4yM`8{`RJ2Ii7NP7aL;S_4o6`PbG;jn8V`A)q)P zPdSbgpM@KTT&d#H%cZi)zIG20lL@sDx@7j3yL$V$RDTIn%3h_#AJ%ny3L-0$g;RC) z!Pb6+W)Omv_~|nrj6Z1X$=g>O2Y2%j&2OdPAh9bl`Sz>`P`*J?=lT# z9MU0D<2-yQY;T)nWF@4~!=FY`v8jBOn{6Jkl!>;X$i%nH7Ch8c)WwJko^U-;gNZ)Y ziD0W184~-`LrxD_7pEa@r)NH;5_M}m1L!dHQKt|Qbi&h{CiAOEqwhZ flink-addons org.apache.flink - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/hbase/pom.xml b/flink-addons/hbase/pom.xml index 3cca2e747e5..1cdcb6d90a8 100644 --- a/flink-addons/hbase/pom.xml +++ b/flink-addons/hbase/pom.xml @@ -7,7 +7,7 @@ flink-addons org.apache.flink - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/jdbc/pom.xml b/flink-addons/jdbc/pom.xml index e5d3c1f645d..c4049d6022c 100644 --- a/flink-addons/jdbc/pom.xml +++ b/flink-addons/jdbc/pom.xml @@ -8,7 +8,7 @@ flink-addons org.apache.flink - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/pom.xml b/flink-addons/pom.xml index f518d54e777..6c5181d7174 100644 --- a/flink-addons/pom.xml +++ b/flink-addons/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/spargel/pom.xml b/flink-addons/spargel/pom.xml index f9180402f27..68200491a1c 100644 --- a/flink-addons/spargel/pom.xml +++ b/flink-addons/spargel/pom.xml @@ -7,7 +7,7 @@ flink-addons org.apache.flink - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-addons/yarn/pom.xml b/flink-addons/yarn/pom.xml index b35a6e94516..b475b264cdc 100644 --- a/flink-addons/yarn/pom.xml +++ b/flink-addons/yarn/pom.xml @@ -5,7 +5,7 @@ org.apache.flink flink-addons - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-clients/pom.xml b/flink-clients/pom.xml index eaead9504df..30c5f564e8a 100644 --- a/flink-clients/pom.xml +++ b/flink-clients/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-compiler/pom.xml b/flink-compiler/pom.xml index 69887980d72..a1c95493069 100644 --- a/flink-compiler/pom.xml +++ b/flink-compiler/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-core/pom.xml b/flink-core/pom.xml index e49e255e4bb..d445cf8ed5a 100644 --- a/flink-core/pom.xml +++ b/flink-core/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-dist/pom.xml b/flink-dist/pom.xml index c63e50b7a5d..018aebde116 100644 --- a/flink-dist/pom.xml +++ b/flink-dist/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-dist/src/main/flink-bin/yarn-bin/yarn-session.sh b/flink-dist/src/main/flink-bin/yarn-bin/yarn-session.sh index 51d172db566..457e0ee53de 100644 --- a/flink-dist/src/main/flink-bin/yarn-bin/yarn-session.sh +++ b/flink-dist/src/main/flink-bin/yarn-bin/yarn-session.sh @@ -31,7 +31,7 @@ JVM_ARGS="$JVM_ARGS -Xmx512m" # Flink CLI client constructCLIClientClassPath() { - for jarfile in $STRATOSPHERE_LIB_DIR/*.jar ; do + for jarfile in $FLINK_LIB_DIR/*.jar ; do if [[ $CC_CLASSPATH = "" ]]; then CC_CLASSPATH=$jarfile; else diff --git a/flink-examples/flink-java-examples/pom.xml b/flink-examples/flink-java-examples/pom.xml index 0e2a87c7f17..c2cb670f25b 100644 --- a/flink-examples/flink-java-examples/pom.xml +++ b/flink-examples/flink-java-examples/pom.xml @@ -6,7 +6,7 @@ org.apache.flink flink-examples - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-examples/flink-scala-examples/pom.xml b/flink-examples/flink-scala-examples/pom.xml index f3775ea200a..8c093705aef 100644 --- a/flink-examples/flink-scala-examples/pom.xml +++ b/flink-examples/flink-scala-examples/pom.xml @@ -6,7 +6,7 @@ org.apache.flink flink-examples - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-examples/pom.xml b/flink-examples/pom.xml index 1440617f225..169e288f943 100644 --- a/flink-examples/pom.xml +++ b/flink-examples/pom.xml @@ -6,7 +6,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-java/pom.xml b/flink-java/pom.xml index 90de8e4be9d..82039bba15e 100644 --- a/flink-java/pom.xml +++ b/flink-java/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-quickstart/pom.xml b/flink-quickstart/pom.xml index c5fd844a8b4..9aa75c9e8be 100644 --- a/flink-quickstart/pom.xml +++ b/flink-quickstart/pom.xml @@ -5,7 +5,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-quickstart/quickstart-SNAPSHOT.sh b/flink-quickstart/quickstart-SNAPSHOT.sh index 870158ec1b8..98ff144ee6c 100755 --- a/flink-quickstart/quickstart-SNAPSHOT.sh +++ b/flink-quickstart/quickstart-SNAPSHOT.sh @@ -20,7 +20,7 @@ PACKAGE=quickstart mvn archetype:generate \ -DarchetypeGroupId=org.apache.flink \ -DarchetypeArtifactId=quickstart-java \ - -DarchetypeVersion=0.6-SNAPSHOT \ + -DarchetypeVersion=0.6-incubating-SNAPSHOT \ -DgroupId=org.apache.flink \ -DartifactId=$PACKAGE \ -Dversion=0.1 \ diff --git a/flink-quickstart/quickstart-java/pom.xml b/flink-quickstart/quickstart-java/pom.xml index 930d2626ccc..c0926573644 100644 --- a/flink-quickstart/quickstart-java/pom.xml +++ b/flink-quickstart/quickstart-java/pom.xml @@ -9,7 +9,7 @@ org.apache.flink flink-quickstart - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-quickstart/quickstart-java/src/main/resources/archetype-resources/pom.xml b/flink-quickstart/quickstart-java/src/main/resources/archetype-resources/pom.xml index c38da787765..18d1b3b29cf 100644 --- a/flink-quickstart/quickstart-java/src/main/resources/archetype-resources/pom.xml +++ b/flink-quickstart/quickstart-java/src/main/resources/archetype-resources/pom.xml @@ -20,12 +20,12 @@ org.apache.flink flink-java - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT org.apache.flink flink-clients - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT diff --git a/flink-quickstart/quickstart-scala-SNAPSHOT.sh b/flink-quickstart/quickstart-scala-SNAPSHOT.sh index b3154004e58..738ab4a5dbd 100755 --- a/flink-quickstart/quickstart-scala-SNAPSHOT.sh +++ b/flink-quickstart/quickstart-scala-SNAPSHOT.sh @@ -20,7 +20,7 @@ PACKAGE=quickstart mvn archetype:generate \ -DarchetypeGroupId=org.apache.flink \ -DarchetypeArtifactId=quickstart-scala \ - -DarchetypeVersion=0.6-SNAPSHOT \ + -DarchetypeVersion=0.6-incubating-SNAPSHOT \ -DgroupId=org.apache.flink \ -DartifactId=$PACKAGE \ -Dversion=0.1 \ diff --git a/flink-quickstart/quickstart-scala/pom.xml b/flink-quickstart/quickstart-scala/pom.xml index 7c719421291..030bd171158 100644 --- a/flink-quickstart/quickstart-scala/pom.xml +++ b/flink-quickstart/quickstart-scala/pom.xml @@ -9,7 +9,7 @@ org.apache.flink flink-quickstart - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-quickstart/quickstart-scala/src/main/resources/archetype-resources/pom.xml b/flink-quickstart/quickstart-scala/src/main/resources/archetype-resources/pom.xml index d9218f8f556..0a2589b3388 100644 --- a/flink-quickstart/quickstart-scala/src/main/resources/archetype-resources/pom.xml +++ b/flink-quickstart/quickstart-scala/src/main/resources/archetype-resources/pom.xml @@ -22,12 +22,12 @@ org.apache.flink flink-scala - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT org.apache.flink flink-clients - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT diff --git a/flink-runtime/pom.xml b/flink-runtime/pom.xml index c6863ca9313..5b8f34a1289 100644 --- a/flink-runtime/pom.xml +++ b/flink-runtime/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-scala/pom.xml b/flink-scala/pom.xml index 49e46a3f0cf..14a7ab8806f 100644 --- a/flink-scala/pom.xml +++ b/flink-scala/pom.xml @@ -6,7 +6,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-test-utils/pom.xml b/flink-test-utils/pom.xml index c9c3f06b14c..315533388e1 100644 --- a/flink-test-utils/pom.xml +++ b/flink-test-utils/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/flink-tests/pom.xml b/flink-tests/pom.xml index c4a176259a8..c994a19fd5b 100644 --- a/flink-tests/pom.xml +++ b/flink-tests/pom.xml @@ -7,7 +7,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT .. diff --git a/pom.xml b/pom.xml index 73222377e07..04d49a910c2 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.apache.flink flink-parent - 0.6-SNAPSHOT + 0.6-incubating-SNAPSHOT flink pom -- GitLab