Skip to content

Commit

Permalink
[release] fix remaining and recently introduced old version artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mxm committed Oct 27, 2015
1 parent 6a838db commit 5dba971
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/apis/best_practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion docs/apis/storm_compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/internals/monitoring_rest_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
~~~
Expand Down
2 changes: 1 addition & 1 deletion flink-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 5dba971

Please sign in to comment.