From 5dba9713d5073b9a5addb821f9f58174d3e57a3e Mon Sep 17 00:00:00 2001 From: Maximilian Michels Date: Tue, 27 Oct 2015 15:06:23 +0100 Subject: [PATCH] [release] fix remaining and recently introduced old version artifacts --- 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(-) diff --git a/docs/apis/best_practices.md b/docs/apis/best_practices.md index 9ef519b7890..9a082220bcd 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: org.apache.flink flink-java - 0.10-SNAPSHOT + {{ site.version }} log4j @@ -343,7 +343,7 @@ Change your projects `pom.xml` file like this: org.apache.flink flink-streaming-java - 0.10-SNAPSHOT + {{ site.version }} log4j @@ -358,7 +358,7 @@ Change your projects `pom.xml` file like this: org.apache.flink flink-clients - 0.10-SNAPSHOT + {{ site.version }} log4j diff --git a/docs/apis/storm_compatibility.md b/docs/apis/storm_compatibility.md index e3e11abda5a..103b605f2c2 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. diff --git a/docs/internals/monitoring_rest_api.md b/docs/internals/monitoring_rest_api.md index 79463311b75..643db6b88f0 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" } ~~~ diff --git a/flink-benchmark/pom.xml b/flink-benchmark/pom.xml index b22e0d1acb2..6b2c13dc940 100644 --- a/flink-benchmark/pom.xml +++ b/flink-benchmark/pom.xml @@ -60,7 +60,7 @@ under the License. org.apache.flink flink-runtime - 0.10-SNAPSHOT + 1.0-SNAPSHOT test-jar test -- GitLab