A collection of utility libraries for the Micronaut ecosystem.
| Module | Description |
|---|---|
| assisted-inject | Assisted injection pattern for Micronaut — create objects that combine DI services with runtime parameters |
Add the modules you need to your build:
// build.gradle.kts
dependencies {
implementation("com.pkware.micronaut:assisted-inject:1.0.0")
}// build.gradle
dependencies {
implementation 'com.pkware.micronaut:assisted-inject:1.0.0'
}- Java 21+
- Micronaut 4.x
MIT — PKWARE, Inc.
- Change the relevant version in
gradle.propertiesto a non-SNAPSHOT version. git commit -am "Release version X.Y.Z."(where and X.Y.Z is the new version)- Push or merge to the main branch.
- Update
gradle.propertiesto the next SNAPSHOT version. git commit -am "Prepare next development version."- After the merge, tag the release commit on the main branch.
git tag -a X.Y.Z -m "Version X.Y.Z"(where X.Y.Z is the new version) git push --tags.