sdk-java/examples
Pierangelo Di Pilato 8587e8c4b0
[2.2] Bump version to 2.2.1 (#438)
Run:
```
./mvnw versions:set -DnewVersion=2.2.1 -DgenerateBackupPoms=false -B
find . -type f -name "*.md" -exec sed -i -e "s+<version>[a-zA-Z0-9.-]*<\/version>+<version>2.2.1</version>+g" {} +
```

Signed-off-by: Pierangelo Di Pilato <pdipilat@redhat.com>
2021-12-21 12:19:03 +01:00
..
amqp-proton [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
basic-http [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
kafka [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
restful-ws-quarkus [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
restful-ws-spring-boot [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
spring-function [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
spring-reactive [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
spring-rsocket [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
vertx [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00
README.md Add a Spring sample with webflux (#314) 2020-11-30 18:16:20 +01:00
pom.xml [2.2] Bump version to 2.2.1 (#438) 2021-12-21 12:19:03 +01:00

README.md

CloudEvents sdk-java examples

This directory includes some examples on how to use CloudEvents sdk-java:

  • amqp-proton shows how to use the module cloudevents-amqp-proton to send and receive CloudEvents using AMQP 1.0.
  • kafka shows how to use the module cloudevents-kafka to produce and consume CloudEvents on Kafka topics.
  • restful-ws-quarkus shows how to use the module cloudevents-http-restful-ws with Quarkus to receive and send CloudEvents through HTTP.
  • restful-ws-spring-boot shows how to use the module cloudevents-http-restful-ws with Spring Boot and Jersey to receive and send CloudEvents through HTTP.
  • spring-reactive shows how to use the module cloudevents-spring with Spring Boot and Webflux to receive and send CloudEvents through HTTP.
  • vertx shows how to use the module cloudevents-http-vertx to receive and send CloudEvents through HTTP using vertx-web-client and vertx-core.
  • basic-http shows how to use the module cloudevents-http-basic to send and receive CloudEvents using JDK's HttpServer, HttpURLConnection and Jetty.