Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goodforgod/micronaut-library-template
📜 Micronaut Library Template
https://github.com/goodforgod/micronaut-library-template
code-style gradle library micronaut micronaut-library micronaut-template template
Last synced: about 2 months ago
JSON representation
📜 Micronaut Library Template
- Host: GitHub
- URL: https://github.com/goodforgod/micronaut-library-template
- Owner: GoodforGod
- License: apache-2.0
- Created: 2019-11-13T21:17:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T18:16:20.000Z (about 3 years ago)
- Last Synced: 2024-11-05T11:08:15.066Z (3 months ago)
- Topics: code-style, gradle, library, micronaut, micronaut-library, micronaut-template, template
- Language: Java
- Homepage:
- Size: 216 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Micronaut Library Template
Template for Micronaut library for Java 11+.
## Features
- Gradle, build, wrapper, properties configured.
- [Code Style](https://goodforgod.dev/posts/3/), formatting , .gitignore configured.
- application.yaml, logback.xml, environment variables for local ruin\test configured.
- Dockerfile for packaging application configured.## Publish Locally
```shell
./gradlew publishToMavenLocal
```## Test
```shell
./gradlew test
```## Code Style
Code Style is provided and configured with Spotless, you can read more about [Code Style here](https://goodforgod.dev/posts/3/)
Check Code Style:
```shell
./gradlew spotlessCheck
```Apply Code Style:
```shell
./gradlew spotlessApply
```