This project includes integration between Micronaut and Kafka.
See the Documentation for more information.
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
ingradle.properties
to a semantic, unreleased version. Example1.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