You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mx...@apache.org on 2015/10/27 15:12:28 UTC

flink git commit: [release] fix remaining and recently introduced old version artifacts

Repository: flink
Updated Branches:
  refs/heads/master 6a838db13 -> 5dba9713d


[release] fix remaining and recently introduced old version artifacts


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/5dba9713
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/5dba9713
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/5dba9713

Branch: refs/heads/master
Commit: 5dba9713d5073b9a5addb821f9f58174d3e57a3e
Parents: 6a838db
Author: Maximilian Michels <mx...@apache.org>
Authored: Tue Oct 27 15:06:23 2015 +0100
Committer: Maximilian Michels <mx...@apache.org>
Committed: Tue Oct 27 15:12:17 2015 +0100

----------------------------------------------------------------------
 docs/apis/best_practices.md           | 6 +++---
 docs/apis/storm_compatibility.md      | 2 +-
 docs/internals/monitoring_rest_api.md | 2 +-
 flink-benchmark/pom.xml               | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/5dba9713/docs/apis/best_practices.md
----------------------------------------------------------------------
diff --git a/docs/apis/best_practices.md b/docs/apis/best_practices.md
index 9ef519b..9a08222 100644
--- a/docs/apis/best_practices.md
+++ b/docs/apis/best_practices.md
@@ -328,7 +328,7 @@ Change your projects `pom.xml` file like this:
 	<dependency>
 		<groupId>org.apache.flink</groupId>
 		<artifactId>flink-java</artifactId>
-		<version>0.10-SNAPSHOT</version>
+		<version>{{ site.version }}</version>
 		<exclusions>
 			<exclusion>
 				<groupId>log4j</groupId>
@@ -343,7 +343,7 @@ Change your projects `pom.xml` file like this:
 	<dependency>
 		<groupId>org.apache.flink</groupId>
 		<artifactId>flink-streaming-java</artifactId>
-		<version>0.10-SNAPSHOT</version>
+		<version>{{ site.version }}</version>
 		<exclusions>
 			<exclusion>
 				<groupId>log4j</groupId>
@@ -358,7 +358,7 @@ Change your projects `pom.xml` file like this:
 	<dependency>
 		<groupId>org.apache.flink</groupId>
 		<artifactId>flink-clients</artifactId>
-		<version>0.10-SNAPSHOT</version>
+		<version>{{ site.version }}</version>
 		<exclusions>
 			<exclusion>
 				<groupId>log4j</groupId>

http://git-wip-us.apache.org/repos/asf/flink/blob/5dba9713/docs/apis/storm_compatibility.md
----------------------------------------------------------------------
diff --git a/docs/apis/storm_compatibility.md b/docs/apis/storm_compatibility.md
index e3e11ab..103b605 100644
--- a/docs/apis/storm_compatibility.md
+++ b/docs/apis/storm_compatibility.md
@@ -271,7 +271,7 @@ public class TimedFiniteSpout extends BaseRichSpout implements FiniteSpout {
 You can find more examples in Maven module `flink-storm-examples`.
 For the different versions of WordCount, see [README.md](https://github.com/apache/flink/tree/master/flink-contrib/flink-storm-examples/README.md).
 To run the examples, you need to assemble a correct jar file.
-`flink-storm-examples-0.10-SNAPSHOT.jar` is **no** valid jar file for job execution (it is only a standard maven artifact).
+`flink-storm-examples-{{ site.version }}.jar` is **no** valid jar file for job execution (it is only a standard maven artifact).
 
 There are example jars for embedded Spout and Bolt, namely `WordCount-SpoutSource.jar` and `WordCount-BoltTokenizer.jar`, respectively.
 Compare `pom.xml` to see how both jars are built.

http://git-wip-us.apache.org/repos/asf/flink/blob/5dba9713/docs/internals/monitoring_rest_api.md
----------------------------------------------------------------------
diff --git a/docs/internals/monitoring_rest_api.md b/docs/internals/monitoring_rest_api.md
index 7946331..643db6b 100644
--- a/docs/internals/monitoring_rest_api.md
+++ b/docs/internals/monitoring_rest_api.md
@@ -86,7 +86,7 @@ Sample Result:
   "refresh-interval": 3000,
   "timezone-offset": 3600000,
   "timezone-name": "Central European Time",
-  "flink-version": "0.10-SNAPSHOT",
+  "flink-version": "{{ site.version }}",
   "flink-revision": "8124545 @ 16.09.2015 @ 15:38:42 CEST"
 }
 ~~~

http://git-wip-us.apache.org/repos/asf/flink/blob/5dba9713/flink-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/flink-benchmark/pom.xml b/flink-benchmark/pom.xml
index b22e0d1..6b2c13d 100644
--- a/flink-benchmark/pom.xml
+++ b/flink-benchmark/pom.xml
@@ -60,7 +60,7 @@ under the License.
     <dependency>
       <groupId>org.apache.flink</groupId>
       <artifactId>flink-runtime</artifactId>
-      <version>0.10-SNAPSHOT</version>
+      <version>1.0-SNAPSHOT</version>
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>