From 529de69aad25e56bcc5903de424306e02fe922b9 Mon Sep 17 00:00:00 2001 From: ruromero Date: Mon, 16 Jan 2023 19:12:13 +0100 Subject: [PATCH] prepare v1.1 tag --- README.md | 18 +++++++++--------- pom.xml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5b1ab41..0949871 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ work well and send valid CloudEvents. By default the application will start using a loopback endpoint ```{bash} -./target/cloudevent-player-1.1-SNAPSHOT-runner +./target/cloudevent-player-1.1-runner ``` You can send a message from inside the application by filling in the form and the activity will show the sent @@ -77,7 +77,7 @@ $ java -Dplayer.mode=LOCAL -jar target/quarkus-app/quarkus-run.jar ... 2022-06-24 18:39:07,794 INFO [io.und.websockets] (main) UT026003: Adding annotated server endpoint class com.redhat.syseng.tools.cloudevents.resources.MessagesSocket for path /socket 2022-06-24 18:39:08,130 INFO [io.qua.sma.ope.run.OpenApiRecorder] (main) Default CORS properties will be used, please use 'quarkus.http.cors' properties instead -2022-06-24 18:39:08,216 INFO [io.quarkus] (main) cloudevent-player 1.1-SNAPSHOT on JVM (powered by Quarkus 2.15.0.Final) started in 0.879s. Listening on: http://0.0.0.0:8080 +2022-06-24 18:39:08,216 INFO [io.quarkus] (main) cloudevent-player 1.1 on JVM (powered by Quarkus 2.15.0.Final) started in 0.879s. Listening on: http://0.0.0.0:8080 2022-06-24 18:39:08,217 INFO [io.quarkus] (main) Profile prod activated. 2022-06-24 18:39:08,217 INFO [io.quarkus] (main) Installed features: [cdi, hibernate-validator, kubernetes-client, rest-client, resteasy-reactive, resteasy-reactive-jackson, smallrye-context-propagation, smallrye-openapi, vertx, websockets, websockets-client] ``` @@ -94,7 +94,7 @@ Listening for transport dt_socket at address: 5005 2022-06-24 18:51:43,172 INFO [io.und.websockets] (Quarkus Main Thread) UT026003: Adding annotated server endpoint class com.redhat.syseng.tools.cloudevents.resources.MessagesSocket for path /socket 2022-06-24 18:51:43,229 WARN [org.jbo.res.res.i18n] (Quarkus Main Thread) RESTEASY002155: Provider class io.cloudevents.http.restful.ws.CloudEventsProvider is already registered. 2nd registration is being ignored. -2022-06-24 18:51:43,513 INFO [io.quarkus] (Quarkus Main Thread) cloudevent-player 1.1-SNAPSHOT on JVM (powered by Quarkus 2.15.0.Final) started in 2.543s. Listening on: http://localhost:8080 +2022-06-24 18:51:43,513 INFO [io.quarkus] (Quarkus Main Thread) cloudevent-player 1.1 on JVM (powered by Quarkus 2.15.0.Final) started in 2.543s. Listening on: http://localhost:8080 2022-06-24 18:51:43,514 INFO [io.quarkus] (Quarkus Main Thread) Profile dev activated. Live Coding activated. 2022-06-24 18:51:43,515 INFO [io.quarkus] (Quarkus Main Thread) Installed features: [cdi, hibernate-validator, kubernetes-client, rest-client, resteasy-reactive, resteasy-reactive-jackson, smallrye-context-propagation, smallrye-openapi, swagger-ui, vertx, websockets, websockets-client] @@ -112,9 +112,9 @@ mvn clean install -Pnative Run ```shell script -$ ./target/cloudevent-player-1.1-SNAPSHOT-runner -Dplayer.mode=LOCAL +$ ./target/cloudevent-player-1.1-runner -Dplayer.mode=LOCAL ... -2022-06-24 18:48:11,565 INFO [io.quarkus] (main) cloudevent-player 1.1-SNAPSHOT native (powered by Quarkus 2.15.0.Final) started in 0.022s. Listening on: http://0.0.0.0:8080 +2022-06-24 18:48:11,565 INFO [io.quarkus] (main) cloudevent-player 1.1 native (powered by Quarkus 2.15.0.Final) started in 0.022s. Listening on: http://0.0.0.0:8080 2022-06-24 18:48:11,565 INFO [io.quarkus] (main) Profile prod activated. 2022-06-24 18:48:11,565 INFO [io.quarkus] (main) Installed features: [cdi, hibernate-validator, kubernetes-client, rest-client, resteasy-reactive, resteasy-reactive-jackson, smallrye-context-propagation, smallrye-openapi, vertx, websockets, websockets-client] 2022-06-24 18:48:17,028 INFO [com.red.sys.too.clo.ser.MessageService] (ForkJoinPool.commonPool-worker-3) Player mode LOCAL - broker: http://localhost:8080/ @@ -168,10 +168,10 @@ Cloudevents-player comes with 2 modes defined in the PLAYER_MODE environment var ```bash # Local Mode -./target/cloudevent-player-1.1-SNAPSHOT-runner -Dplayer.mode=LOCAL +./target/cloudevent-player-1.1-runner -Dplayer.mode=LOCAL # Knative Mode -./target/cloudevent-player-1.1-SNAPSHOT-runner -Dplayer.mode=KNATIVE +./target/cloudevent-player-1.1-runner -Dplayer.mode=KNATIVE ``` ### Broker URI @@ -180,7 +180,7 @@ Sets the broker URI where the messages will be sent to. It will always be `local Overrides the name and namespace properties. ```bash -./target/cloudevent-player-1.1-SNAPSHOT-runner -Dplayer.mode=KNATIVE -Dbroker.uri=http://some-broker:1234 +./target/cloudevent-player-1.1-runner -Dplayer.mode=KNATIVE -Dbroker.uri=http://some-broker:1234 ``` ### Broker Name and Namespace @@ -190,7 +190,7 @@ namespace will be the current namespace. ```bash # The broker URL -./target/cloudevent-player-1.1-SNAPSHOT-runner -Dplayer.mode=KNATIVE -Dbroker.name=example -Dbroker.namespace=other +./target/cloudevent-player-1.1-runner -Dplayer.mode=KNATIVE -Dbroker.name=example -Dbroker.namespace=other ... 2022-06-24 19:08:53,681 INFO [com.red.sys.too.clo.ser.MessageService] (ForkJoinPool.commonPool-worker-3) Player mode KNATIVE - broker: http://broker-ingress.knative-eventing.svc.cluster.local/other/example ``` \ No newline at end of file diff --git a/pom.xml b/pom.xml index 387eaf4..27a7e72 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.redhat.syseng.tools cloudevent-player - 1.1-SNAPSHOT + 1.1 scm:git:https://github.com/ruromero/cloudevents-player.git scm:git:git@github.com:ruromero/cloudevents-player.git