You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ process persists beyond the life of the task for future reporting.
14
14
15
15
== Requirements:
16
16
17
-
* Java 8 or Above
17
+
* Java 17 or Above
18
18
19
19
== Build Main Project:
20
20
@@ -56,4 +56,4 @@ This project adheres to the Contributor Covenant link:CODE_OF_CONDUCT.adoc[code
56
56
== Building the Project
57
57
58
58
This project requires that you invoke the Javadoc engine from the Maven command line. You can do so by appending `javadoc:aggregate` to the rest of your Maven command.
59
-
For example, to build the entire project, you could use `./mvnw -Pfull javadoc:aggregate`.
59
+
For example, to build the entire project, you could use `mvn clean install -DskipTests -P docs`.
Copy file name to clipboardExpand all lines: docs/src/main/asciidoc/README.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ process persists beyond the life of the task for future reporting.
7
7
8
8
== Requirements:
9
9
10
-
* Java 8 or Above
10
+
* Java 17 or Above
11
11
12
12
== Build Main Project:
13
13
@@ -49,4 +49,4 @@ This project adheres to the Contributor Covenant link:CODE_OF_CONDUCT.adoc[code
49
49
== Building the Project
50
50
51
51
This project requires that you invoke the Javadoc engine from the Maven command line. You can do so by appending `javadoc:aggregate` to the rest of your Maven command.
52
-
For example, to build the entire project, you could use `./mvnw -Pfull javadoc:aggregate`.
52
+
For example, to build the entire project, you could use `mvn clean install -DskipTests -P docs`.
Once you have configured the Kafka properties from Spring Boot, you can configure the `KafkaItemReader`
301
301
itself by setting the following properties:
302
302
@@ -512,7 +512,7 @@ See the https://docs.spring.io/spring-batch/docs/4.3.x/api/org/springframework/b
512
512
513
513
To write step output to a Kafka topic, you need `KafkaItemWriter`. This starter
514
514
provides autoconfiguration for a `KafkaItemWriter` by using facilities from two places.
515
-
The first is Spring Boot's Kafka autoconfiguration. (See the https://docs.spring.io/spring-boot/docs/2.4.x/reference/htmlsingle/#boot-features-kafka[Spring Boot Kafka documentation].)
515
+
The first is Spring Boot's Kafka autoconfiguration. (See the https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#messaging.kafka.additional-properties[Spring Boot Kafka documentation].)
516
516
Second, this starter lets you configure two properties on the writer.
Copy file name to clipboardExpand all lines: spring-cloud-task-samples/batch-events/README.adoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ This is a task application that emits batch job events to the following channels
10
10
* item-write-events
11
11
* skip-events
12
12
13
-
Note: More information on this topic is available https://docs.spring.io/spring-cloud-task/current-SNAPSHOT/reference/htmlsingle/#stream-integration-batch-events[here].
13
+
Note: More information on this topic is available https://docs.spring.io/spring-cloud-task/docs/current/reference/html/#stream-integration-batch-events[here].
14
14
15
15
== Requirements:
16
16
17
-
* Java 8 or Above
17
+
* Java 17 or Above
18
18
19
19
== Build:
20
20
@@ -27,15 +27,15 @@ $ ./mvnw clean install
27
27
28
28
[source,shell,indent=2]
29
29
----
30
-
$ java -jar target/batch-events-1.2.1.RELEASE.jar
30
+
$ java -jar target/batch-events-3.0.0.jar
31
31
----
32
32
33
-
For example you can listen for specific job execution events on a specified channel with a Spring Cloud Stream Sink
34
-
like the log sink using the following:
33
+
For example you can listen for specific job execution events on a specified channel with a Spring Cloud Stream Sink
34
+
like the https://github.com/spring-cloud/stream-applications/tree/main/applications/sink/log-sink[log sink] using the following:
0 commit comments