Return-Path: X-Original-To: apmail-flink-commits-archive@minotaur.apache.org Delivered-To: apmail-flink-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 012E71785B for ; Tue, 14 Apr 2015 12:51:37 +0000 (UTC) Received: (qmail 24617 invoked by uid 500); 14 Apr 2015 12:51:36 -0000 Delivered-To: apmail-flink-commits-archive@flink.apache.org Received: (qmail 24579 invoked by uid 500); 14 Apr 2015 12:51:36 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 24570 invoked by uid 99); 14 Apr 2015 12:51:36 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Apr 2015 12:51:36 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id B103AAC059A for ; Tue, 14 Apr 2015 12:51:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1673418 - in /flink: _config.yml downloads.md site/archive.html site/downloads.html Date: Tue, 14 Apr 2015 12:51:36 -0000 To: commits@flink.apache.org From: mxm@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150414125136.B103AAC059A@hades.apache.org> Author: mxm Date: Tue Apr 14 12:51:36 2015 New Revision: 1673418 URL: http://svn.apache.org/r1673418 Log: correct downloads page for milestone release Modified: flink/_config.yml flink/downloads.md flink/site/archive.html flink/site/downloads.html Modified: flink/_config.yml URL: http://svn.apache.org/viewvc/flink/_config.yml?rev=1673418&r1=1673417&r2=1673418&view=diff ============================================================================== --- flink/_config.yml (original) +++ flink/_config.yml Tue Apr 14 12:51:36 2015 @@ -16,6 +16,7 @@ FLINK_VERSION_STABLE_SHORT: 0.8.1 FLINK_GITHUB_TAG_STABLE: release-0.8.1 FLINK_VERSION_LATEST: 0.9-SNAPSHOT +FLINK_VERSION_HADOOP_1_LATEST: 0.9-SNAPSHOT-hadoop1 FLINK_VERSION_HADOOP_2_LATEST: 0.9-SNAPSHOT FLINK_VERSION_LATEST_SHORT: 0.9 FLINK_GITHUB_TAG_LATEST: master Modified: flink/downloads.md URL: http://svn.apache.org/viewvc/flink/downloads.md?rev=1673418&r1=1673417&r2=1673418&view=diff ============================================================================== --- flink/downloads.md (original) +++ flink/downloads.md Tue Apr 14 12:51:36 2015 @@ -42,6 +42,29 @@ Apache Flink {{ site.FLINK_VERSION_STABL + +### Maven Dependencies + +You can add the following dependencies to your `pom.xml` to include Apache Flink in your project. + +```xml + + org.apache.flink + flink-java + {{ site.FLINK_VERSION_STABLE }} + + + org.apache.flink + flink-clients + {{ site.FLINK_VERSION_STABLE }} + +``` + +These dependencies include a local execution environment and thus support local testing. + +- **Hadoop 1**: If you want to interact with Hadoop 1, use `{{ site.FLINK_VERSION_HADOOP_1_STABLE }}` as the version. +- **Scala API**: To use the Scala API, replace the `flink-java` artifact id with `flink-scala`. + ## Preview This **milestone release** is a preview of the upcoming {{site.FLINK_VERSION_LATEST_SHORT}} release. Check out the announcement for all the details. @@ -66,21 +89,21 @@ You can add the following dependencies t org.apache.flink flink-java - {{ site.FLINK_VERSION_STABLE }} + 0.9.0-milestone-1 org.apache.flink flink-clients - {{ site.FLINK_VERSION_STABLE }} + 0.9.0-milestone-1 ``` These dependencies include a local execution environment and thus support local testing. -- **Hadoop 1**: If you want to interact with Hadoop 1, use `{{ site.FLINK_VERSION_HADOOP_1_STABLE }}` as the version. +- **Hadoop 1**: If you want to interact with Hadoop 1, use `0.9.0-milestone-1-hadoop1` as the version. - **Scala API**: To use the Scala API, replace the `flink-java` artifact id with `flink-scala`. -## Latest +## Latest Apache Flink `{{ site.FLINK_VERSION_LATEST }}` is our latest development version. @@ -112,7 +135,7 @@ Add the **Apache Snapshot repository** t ``` -You can now include Apache Flink as a Maven dependency (see above) with version `{{ site.FLINK_VERSION_LATEST }}` (or `{{ site.FLINK_VERSION_HADOOP_1_STABLE}}` for compatibility with old Hadoop versions (1.x). +You can now include Apache Flink as a Maven dependency (see above) with version `{{ site.FLINK_VERSION_LATEST }}` (or `{{ site.FLINK_VERSION_HADOOP_1_LATEST}}` for compatibility with old Hadoop versions (1.x). ## Checkout from Source @@ -126,4 +149,4 @@ mvn clean package -DskipTests Note: Flink does not build with Oracle JDK 6. It runs with Oracle JDK 6. -If you want to build for Hadoop 1, activate the build profile via `mvn clean package -DskipTests -Dhadoop.profile=1`. \ No newline at end of file +If you want to build for Hadoop 1, activate the build profile via `mvn clean package -DskipTests -Dhadoop.profile=1`. Modified: flink/site/archive.html URL: http://svn.apache.org/viewvc/flink/site/archive.html?rev=1673418&r1=1673417&r2=1673418&view=diff ============================================================================== --- flink/site/archive.html (original) +++ flink/site/archive.html Tue Apr 14 12:51:36 2015 @@ -130,16 +130,16 @@

Archive

-

+}); +

This page lists old versions of Flink including their documentation.

Modified: flink/site/downloads.html URL: http://svn.apache.org/viewvc/flink/site/downloads.html?rev=1673418&r1=1673417&r2=1673418&view=diff ============================================================================== --- flink/site/downloads.html (original) +++ flink/site/downloads.html Tue Apr 14 12:51:36 2015 @@ -130,16 +130,16 @@

Downloads

-

+}); +

Pick the Apache Flink package matching your Hadoop version.

@@ -168,6 +168,27 @@ $( document ).ready(function() {
+

Maven Dependencies

+ +

You can add the following dependencies to your pom.xml to include Apache Flink in your project.

+
<dependency>
+  <groupId>org.apache.flink</groupId>
+  <artifactId>flink-java</artifactId>
+  <version>0.8.1</version>
+</dependency>
+<dependency>
+  <groupId>org.apache.flink</groupId>
+  <artifactId>flink-clients</artifactId>
+  <version>0.8.1</version>
+</dependency>
+
+

These dependencies include a local execution environment and thus support local testing.

+ +
    +
  • Hadoop 1: If you want to interact with Hadoop 1, use 0.8.1-hadoop1 as the version.
  • +
  • Scala API: To use the Scala API, replace the flink-java artifact id with flink-scala.
  • +
+

Preview

This milestone release is a preview of the upcoming 0.9 release. Check out the announcement for all the details.

@@ -190,18 +211,18 @@ $( document ).ready(function() {
<dependency>
   <groupId>org.apache.flink</groupId>
   <artifactId>flink-java</artifactId>
-  <version>0.8.1</version>
+  <version>0.9.0-milestone-1</version>
 </dependency>
 <dependency>
   <groupId>org.apache.flink</groupId>
   <artifactId>flink-clients</artifactId>
-  <version>0.8.1</version>
+  <version>0.9.0-milestone-1</version>
 </dependency>
 

These dependencies include a local execution environment and thus support local testing.

    -
  • Hadoop 1: If you want to interact with Hadoop 1, use 0.8.1-hadoop1 as the version.
  • +
  • Hadoop 1: If you want to interact with Hadoop 1, use 0.9.0-milestone-1-hadoop1 as the version.
  • Scala API: To use the Scala API, replace the flink-java artifact id with flink-scala.
@@ -234,7 +255,7 @@ before its release. Only builds that pas </repository> </repositories>
-

You can now include Apache Flink as a Maven dependency (see above) with version 0.9-SNAPSHOT (or 0.8.1-hadoop1 for compatibility with old Hadoop versions (1.x).

+

You can now include Apache Flink as a Maven dependency (see above) with version 0.9-SNAPSHOT (or 0.9-SNAPSHOT-hadoop1 for compatibility with old Hadoop versions (1.x).

Checkout from Source