Skip to content

Commit

Permalink
update version in readme (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
nextdude committed Jun 3, 2019
1 parent b24535b commit 00bcc07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -40,10 +40,10 @@

## Maven Dependency

`Flinkrunner` `v1.6.0` is now on maven central, built against Flink 1.7.2 with Scala 2.11 and JDK 8.
`Flinkrunner` `v1.6.2` is now on maven central, built against Flink 1.7.2 with Scala 2.11 and JDK 8.

```sbtshell
libraryDependencies += "io.epiphanous" %% "flinkrunner" % "1.6.0"
libraryDependencies += "io.epiphanous" %% "flinkrunner" % "1.6.2"
```

>The apache flink project doesn't include its AWS Kinesis connector on maven
Expand All @@ -68,14 +68,14 @@ Flink kinesis connector) from source. To do so,
```

* Checkout the tag of `FlinkRunner` you want to build. The most recent stable version is
`v1.6.0`, but you can ensure you have the most recent tags with `git fetch --tags` and
`v1.6.2`, but you can ensure you have the most recent tags with `git fetch --tags` and
list tags with `git tag -l`, then

```bash
git checkout tags/v1.6.0 -b my-build-v1.6.0
git checkout tags/v1.6.2 -b my-build-v1.6.2
```

This will create a new local branch `my-build-v1.6.0` based on the `v1.6.0` tag release.
This will create a new local branch `my-build-v1.6.2` based on the `v1.6.2` tag release.

* Build `FlinkRunner` and install it locally, using the `--with.kinesis=true` option

Expand All @@ -92,7 +92,7 @@ Flink kinesis connector) from source. To do so,
resolvers += "Local Maven Repository" at "file://" +
Path.userHome.absolutePath + "/.m2/repository"
...
libraryDependencies += "io.epiphanous" %% "flinkrunner" % "1.6.0k"
libraryDependencies += "io.epiphanous" %% "flinkrunner" % "1.6.2k"
// notice no v here ---^^ ^^---k for kinesis
```

Expand Down

0 comments on commit 00bcc07

Please sign in to comment.