/micronaut-kafka

Integration between Micronaut and Apache Kafka

Primary LanguageJavaApache License 2.0Apache-2.0

Micronaut Kafka

Maven Central

This project includes integration between Micronaut and Kafka.

Documentation

See the Documentation for more information.

Snapshots and Releases

Snaphots are automatically published to JFrog OSS using Github Actions.

See the documentation in the Micronaut Docs for how to configure your build to use snapshots.

Releases are published to JCenter and Maven Central via Github Actions.

A release is performed with the following steps:

  • Change the version specified by projectVersion in gradle.properties to a semantic, unreleased version. Example 1.0.0
  • Commit the change. Example: git commit -m "Release Version 1.0.0"
  • Tag the release where the tag starts with v. Example: git tag v1.0.0
  • Push the commit and the tag: git push && git push --tags