Skip to content

Commit 82d07c8

Browse files
Bump Confluent to 7.7.4-0, Kafka to 7.7.4-0
1 parent f7aa24e commit 82d07c8

30 files changed

+46
-46
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ The next step is to create a standalone jar ("fat jar") of the [application exam
319319
# Create a standalone jar ("fat jar")
320320
$ mvn clean package
321321
322-
# >>> Creates target/kafka-streams-examples-7.7.3-0-standalone.jar
322+
# >>> Creates target/kafka-streams-examples-7.7.4-0-standalone.jar
323323
```
324324
325325
> Tip: If needed, you can disable the test suite during packaging, for example to speed up the packaging or to lower
@@ -333,7 +333,7 @@ You can now run the application examples as follows:
333333
334334
```shell
335335
# Run an example application from the standalone jar. Here: `WordCountLambdaExample`
336-
$ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
336+
$ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
337337
io.confluent.examples.streams.WordCountLambdaExample
338338
```
339339
@@ -348,7 +348,7 @@ If you want to turn on log4j while running your example application, you can edi
348348
349349
```shell
350350
# Run an example application from the standalone jar. Here: `WordCountLambdaExample`
351-
$ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
351+
$ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
352352
-Dlog4j.configuration=file:src/main/resources/log4j.properties \
353353
io.confluent.examples.streams.WordCountLambdaExample
354354
```

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ services:
9292
cub kafka-ready -b kafka:29092 1 20 && \
9393
echo Waiting for Confluent Schema Registry to be ready... && \
9494
cub sr-ready schema-registry 8081 20 && \
95-
java -cp /usr/share/java/kafka-streams-examples/kafka-streams-examples-7.7.3-0-standalone.jar \
95+
java -cp /usr/share/java/kafka-streams-examples/kafka-streams-examples-7.7.4-0-standalone.jar \
9696
io.confluent.examples.streams.interactivequeries.kafkamusic.KafkaMusicExampleDriver \
9797
kafka:29092 http://schema-registry:8081'"
9898
environment:

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>io.confluent</groupId>
99
<artifactId>rest-utils-parent</artifactId>
10-
<version>[7.7.3-0, 7.7.4-0)</version>
10+
<version>[7.7.4-0, 7.7.5-0)</version>
1111
</parent>
1212

1313
<artifactId>kafka-streams-examples</artifactId>
1414
<packaging>jar</packaging>
15-
<version>7.7.3-0</version>
15+
<version>7.7.4-0</version>
1616

1717
<organization>
1818
<name>Confluent, Inc.</name>
@@ -64,7 +64,7 @@
6464
<docker.tag>${project.version}-${docker.os_type}</docker.tag>
6565
<io.confluent.schema-registry.version>${confluent.version.range}</io.confluent.schema-registry.version>
6666
<io.confluent.blueway.version>${confluent.version.range}</io.confluent.blueway.version>
67-
<io.confluent.kafka-streams-examples.version>7.7.3-0</io.confluent.kafka-streams-examples.version>
67+
<io.confluent.kafka-streams-examples.version>7.7.4-0</io.confluent.kafka-streams-examples.version>
6868
</properties>
6969

7070
<dependencies>

src/main/java/io/confluent/examples/streams/AnomalyDetectionLambdaExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* Once packaged you can then run:
5959
* <pre>
6060
* {@code
61-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.AnomalyDetectionLambdaExample
61+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.AnomalyDetectionLambdaExample
6262
* }</pre>
6363
* <p>
6464
* 4) Write some input data to the source topic (e.g. via {@code kafka-console-producer}. The already

src/main/java/io/confluent/examples/streams/ApplicationResetExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* Once packaged you can then run:
6060
* <pre>
6161
* {@code
62-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.ApplicationResetExample
62+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.ApplicationResetExample
6363
* }
6464
* </pre>
6565
* 4) Write some input data to the source topic (e.g. via {@code kafka-console-producer}).
@@ -114,7 +114,7 @@
114114
* Thus, restart the application via:
115115
* <pre>
116116
* {@code
117-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.ApplicationResetExample localhost:9092 --reset
117+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.ApplicationResetExample localhost:9092 --reset
118118
* }</pre>
119119
* 9) If your console consumer (from step 5) is still running, you should see the same output data again.
120120
* If it was stopped and you restart it, if will print the result "twice".

src/main/java/io/confluent/examples/streams/GlobalKTablesExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
* Once packaged you can then run:
7777
* <pre>
7878
* {@code
79-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.GlobalKTablesExample
79+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.GlobalKTablesExample
8080
* }
8181
* </pre>
8282
* 4) Write some input data to the source topics (e.g. via {@link GlobalKTablesAndStoresExampleDriver}). The
@@ -86,7 +86,7 @@
8686
* {@code
8787
* # Here: Write input data using the example driver. The driver will exit once it has received
8888
* # all EnrichedOrders
89-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.GlobalKTablesAndStoresExampleDriver
89+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.GlobalKTablesAndStoresExampleDriver
9090
* }
9191
* </pre>
9292
* <p>

src/main/java/io/confluent/examples/streams/JsonToAvroExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* Once packaged you can then run:
5858
* <pre>
5959
* {@code
60-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.JsonToAvroExample
60+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.JsonToAvroExample
6161
* }
6262
* </pre>
6363
* 4) Write some input data to the source topics (e.g. via {@link JsonToAvroExampleDriver}). The
@@ -68,7 +68,7 @@
6868
* {@code
6969
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
7070
* # you can terminate it via Ctrl-C.
71-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
71+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
7272
* }
7373
* </pre>
7474
*/

src/main/java/io/confluent/examples/streams/JsonToAvroExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* Once packaged you can then run:
5050
* <pre>
5151
* {@code
52-
* java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
52+
* java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
5353
* }
5454
* </pre>
5555
*

src/main/java/io/confluent/examples/streams/MapFunctionLambdaExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* Once packaged you can then run:
6161
* <pre>
6262
* {@code
63-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.MapFunctionLambdaExample
63+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.MapFunctionLambdaExample
6464
* }
6565
* </pre>
6666
* 4) Write some input data to the source topic (e.g. via {@code kafka-console-producer}). The already

src/main/java/io/confluent/examples/streams/PageViewRegionExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
* Once packaged you can then run:
7979
* <pre>
8080
* {@code
81-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.PageViewRegionLambdaExample
81+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.PageViewRegionLambdaExample
8282
* }
8383
* </pre>
8484
* 4) Write some input data to the source topics (e.g. via {@link PageViewRegionExampleDriver}). The
@@ -88,7 +88,7 @@
8888
* {@code
8989
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
9090
* # you can terminate it via `Ctrl-C`.
91-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
91+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
9292
* }
9393
* </pre>
9494
* 5) Inspect the resulting data in the output topic, e.g. via {@code kafka-console-consumer}.

src/main/java/io/confluent/examples/streams/PageViewRegionExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* Once packaged you can then run:
5050
* <pre>
5151
* {@code
52-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
52+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
5353
* }
5454
* </pre>
5555
* You should terminate with {@code Ctrl-C}.

src/main/java/io/confluent/examples/streams/PageViewRegionLambdaExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
* Once packaged you can then run:
7676
* <pre>
7777
* {@code
78-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.PageViewRegionLambdaExample
78+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.PageViewRegionLambdaExample
7979
* }
8080
* </pre>
8181
* 4) Write some input data to the source topics (e.g. via {@link PageViewRegionExampleDriver}).
@@ -85,7 +85,7 @@
8585
* {@code
8686
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
8787
* # you can terminate it via `Ctrl-C`.
88-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
88+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.PageViewRegionExampleDriver
8989
* }
9090
* </pre>
9191
* 5) Inspect the resulting data in the output topic, e.g. via {@code kafka-console-consumer}.

src/main/java/io/confluent/examples/streams/SecureKafkaStreamsExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
* [vagrant@kafka ~]$ mvn clean -DskipTests=true package
101101
*
102102
* # Now we can start this example application
103-
* [vagrant@kafka ~]$ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
103+
* [vagrant@kafka ~]$ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
104104
* io.confluent.examples.streams.SecureKafkaStreamsExample
105105
* }
106106
* </pre>

src/main/java/io/confluent/examples/streams/SessionWindowsExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* Once packaged you can then run:
7171
* <pre>
7272
* {@code
73-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SessionWindowsExample
73+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SessionWindowsExample
7474
* }
7575
* </pre>
7676
* 4) Write some input data to the source topics (e.g. via {@link SessionWindowsExampleDriver}). The
@@ -80,7 +80,7 @@
8080
* {@code
8181
* # Here: Write input data using the example driver. The driver will also consume, and print, the data from the output
8282
* topic. The driver will stop when it has received all output records
83-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SessionWindowsExampleDriver
83+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SessionWindowsExampleDriver
8484
* }
8585
* </pre>
8686
* You should see output data similar to:

src/main/java/io/confluent/examples/streams/SessionWindowsExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Once packaged you can then run:
4343
* <pre>
4444
* {@code
45-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SessionWindowsExampleDriver
45+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SessionWindowsExampleDriver
4646
* }
4747
* </pre>
4848
*/

src/main/java/io/confluent/examples/streams/SumLambdaExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* Once packaged you can then run:
5454
* <pre>
5555
* {@code
56-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SumLambdaExample
56+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SumLambdaExample
5757
* }
5858
* </pre>
5959
* 4) Write some input data to the source topic (e.g. via {@link SumLambdaExampleDriver}). The
@@ -63,7 +63,7 @@
6363
* {@code
6464
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
6565
* # you can terminate it via `Ctrl-C`.
66-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SumLambdaExampleDriver
66+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SumLambdaExampleDriver
6767
* }
6868
* </pre>
6969
* 5) Inspect the resulting data in the output topics, e.g. via {@code kafka-console-consumer}.

src/main/java/io/confluent/examples/streams/SumLambdaExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Once packaged you can then run:
4343
* <pre>
4444
* {@code
45-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.SumLambdaExampleDriver
45+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.SumLambdaExampleDriver
4646
* }
4747
* </pre>
4848
* You should terminate with {@code Ctrl-C}.

src/main/java/io/confluent/examples/streams/TopArticlesExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* Once packaged you can then run:
5353
* <pre>
5454
* {@code
55-
* java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.TopArticlesLambdaExample
55+
* java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.TopArticlesLambdaExample
5656
* }
5757
* </pre>
5858
*

src/main/java/io/confluent/examples/streams/TopArticlesLambdaExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
* Once packaged you can then run:
8282
* <pre>
8383
* {@code
84-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.TopArticlesLambdaExample
84+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.TopArticlesLambdaExample
8585
* }
8686
* </pre>
8787
* 4) Write some input data to the source topics (e.g. via {@link TopArticlesExampleDriver}).
@@ -92,7 +92,7 @@
9292
* {@code
9393
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
9494
* # you can terminate it via Ctrl-C.
95-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.TopArticlesExampleDriver
95+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.TopArticlesExampleDriver
9696
* }
9797
* </pre>
9898
*/

src/main/java/io/confluent/examples/streams/UserRegionLambdaExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* Once packaged you can then run:
5555
* <pre>
5656
* {@code
57-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.UserRegionLambdaExample
57+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.UserRegionLambdaExample
5858
* }
5959
* </pre>
6060
* 4) Write some input data to the source topics (e.g. via {@code kafka-console-producer}). The already

src/main/java/io/confluent/examples/streams/WikipediaFeedAvroExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* Once packaged you can then run:
5959
* <pre>
6060
* {@code
61-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExample
61+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExample
6262
* }
6363
* </pre>
6464
* 4) Write some input data to the source topics (e.g. via {@link WikipediaFeedAvroExampleDriver}).
@@ -69,7 +69,7 @@
6969
* {@code
7070
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
7171
* # you can terminate it via Ctrl-C.
72-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
72+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
7373
* }
7474
* </pre>
7575
*/

src/main/java/io/confluent/examples/streams/WikipediaFeedAvroExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* Once packaged you can then run:
4646
* <pre>
4747
* {@code
48-
* java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
48+
* java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
4949
* }
5050
* </pre>
5151
*

src/main/java/io/confluent/examples/streams/WikipediaFeedAvroLambdaExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* Once packaged you can then run:
5656
* <pre>
5757
* {@code
58-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroLambdaExample
58+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroLambdaExample
5959
* }
6060
* </pre>
6161
* 4) Write some input data to the source topics (e.g. via {@link WikipediaFeedAvroExampleDriver}).
@@ -66,7 +66,7 @@
6666
* {@code
6767
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
6868
* # you can terminate it via Ctrl-C.
69-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
69+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WikipediaFeedAvroExampleDriver
7070
* }
7171
* </pre>
7272
*/

src/main/java/io/confluent/examples/streams/WordCountLambdaExample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
* Once packaged you can then run:
6363
* <pre>
6464
* {@code
65-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.WordCountLambdaExample
65+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.WordCountLambdaExample
6666
* }
6767
* </pre>
6868
* 4) Write some input data to the source topic "streams-plaintext-input" (e.g. via {@code kafka-console-producer}).

src/main/java/io/confluent/examples/streams/interactivequeries/WordCountInteractiveQueriesDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Once packaged you can then run:
3737
* <pre>
3838
* {@code
39-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar io.confluent.examples.streams.interactivequeries.WordCountInteractiveQueriesDriver
39+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar io.confluent.examples.streams.interactivequeries.WordCountInteractiveQueriesDriver
4040
* }
4141
* </pre>
4242
* You should terminate with Ctrl-C

src/main/java/io/confluent/examples/streams/interactivequeries/WordCountInteractiveQueriesExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
*
8282
* <pre>
8383
* {@code
84-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
84+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
8585
* io.confluent.examples.streams.interactivequeries.WordCountInteractiveQueriesExample 7070
8686
* }
8787
* </pre>
@@ -92,7 +92,7 @@
9292
*
9393
* <pre>
9494
* {@code
95-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
95+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
9696
* io.confluent.examples.streams.interactivequeries.WordCountInteractiveQueriesExample 7071
9797
* }
9898
* </pre>

src/main/java/io/confluent/examples/streams/interactivequeries/kafkamusic/KafkaMusicExample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
*
110110
* <pre>
111111
* {@code
112-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
112+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
113113
* io.confluent.examples.streams.interactivequeries.kafkamusic.KafkaMusicExample 7070
114114
* }
115115
* </pre>
@@ -120,7 +120,7 @@
120120
*
121121
* <pre>
122122
* {@code
123-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
123+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
124124
* io.confluent.examples.streams.interactivequeries.kafkamusic.KafkaMusicExample 7071
125125
* }
126126
* </pre>

src/main/java/io/confluent/examples/streams/interactivequeries/kafkamusic/KafkaMusicExampleDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
* Once packaged you can then run:
5151
* <pre>
5252
* {@code
53-
* $ java -cp target/kafka-streams-examples-7.7.3-0-standalone.jar \
53+
* $ java -cp target/kafka-streams-examples-7.7.4-0-standalone.jar \
5454
* io.confluent.examples.streams.interactivequeries.kafkamusic.KafkaMusicExampleDriver
5555
* }
5656
* </pre>

0 commit comments

Comments
 (0)