Updating documentation for 3.x release

Updated versions and links in docs

* Set the baseline to Java 17
* Update links

resolves #814
This commit is contained in:
Glenn Renfro
2022-01-14 14:29:36 -05:00
parent c353d68396
commit 45d7662fbc
17 changed files with 31 additions and 96 deletions

View File

@@ -4,7 +4,7 @@ This is a task application that emits events on a channel named `task-events`
== Requirements:
* Java 8 or Above
* Java 17 or Above
== Build:
@@ -17,15 +17,15 @@ $ ./mvnw clean install
[source,shell,indent=2]
----
$ java -jar target/task-events-1.2.1.RELEASE.jar
$ java -jar target/task-events-3.0.0.RELEASE.jar
----
You can listen for the events on the task-events channel with a Spring Cloud Stream Sink
like the log sink using the following:
like the https://github.com/spring-cloud/stream-applications/tree/main/applications/sink/log-sink[log sink] using the following:
[source,shell,indent=2]
----
$ java -jar <PATH_TO_LOG_SINK_JAR>/log-sink-rabbit-1.0.2.RELEASE.jar --server.port=9090 --spring.cloud.stream.bindings.input.destination=task-events
$ java -jar <PATH_TO_LOG_SINK_JAR>/log-sink-rabbit-3.1.1.jar --server.port=9090 --spring.cloud.stream.bindings.input.destination=task-events
----
== Dependencies: