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:17:25 UTC

flink git commit: [docs] remove hard-coded version artifacts

Repository: flink
Updated Branches:
  refs/heads/release-0.10 b240a8075 -> 04e25e17b


[docs] remove hard-coded version artifacts


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

Branch: refs/heads/release-0.10
Commit: 04e25e17bfa85f837fd8a30dc999114720b381ec
Parents: b240a80
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:15:59 2015 +0100

----------------------------------------------------------------------
 docs/apis/best_practices.md           | 6 +++---
 docs/apis/storm_compatibility.md      | 2 +-
 docs/internals/monitoring_rest_api.md | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/04e25e17/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/04e25e17/docs/apis/storm_compatibility.md
----------------------------------------------------------------------
diff --git a/docs/apis/storm_compatibility.md b/docs/apis/storm_compatibility.md
index bf80d4e..5eb5f07 100644
--- a/docs/apis/storm_compatibility.md
+++ b/docs/apis/storm_compatibility.md
@@ -273,7 +273,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/04e25e17/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"
 }
 ~~~