[Issue23555][pulsar-adapters] 4.0.0 release of pulsar-client-kafka adaptor (#59)

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- upgrade Pulsar to 4.0.0

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- set `jcommander` version to 1.82

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- Set `mockito-core` version to 3.12.4

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- Change version to `4.0.0-SNAPSHOT`

* Apply suggestions from code review

Use `4.0.1` version in test.

Co-authored-by: Zixuan Liu <nodeces@gmail.com>

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- change dependency path, `javax.xxx` -> `jakarta.xxx`

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- `ConsumerName.java` has been removed. Replace ConsumerName#generateRandomName with RandomStringUtils#randomAlphanumeric (#23645)

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- change docker image version.

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- change docker image version.

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- change docker image version.

* Fix issue: https://github.com/apache/pulsar/issues/23555.
- fix docker tag error

---------

Co-authored-by: Zixuan Liu <nodeces@gmail.com>
25 files changed
tree: fe30ec87368f3bdb45adf172283309cc79d1df52
  1. .github/
  2. buildtools/
  3. examples/
  4. pulsar-client-kafka-compat/
  5. pulsar-log4j2-appender/
  6. pulsar-spark/
  7. pulsar-storm/
  8. src/
  9. tests/
  10. .asf.yaml
  11. .gitignore
  12. pom.xml
  13. README.md
README.md

Apache Pulsar Adapters

This repository is used for hosting all the adapters maintained and supported by Apache Pulsar PMC.

Apache Flink adapter is supported and maintained by Apache Flink Community.

Building

In order to build this code you can simply use Maven

mvn install

In order to build this repository the linked Pulsar release must be released to Maven Central other wise you have to build it locally.

For instance if this code depends on Pulsar 4.0.1 you have to build Pulsar 4.0.1 locally

git clone https://github.com/apache/pulsar
git checkout v4.0.1
mvn clean install -DskipTests

This is because this repository depends on test integration artifacts of the relative version on the main Apache Pulsar codebase