Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goodforgod/java-multi-module-template
Java Multi Module Project Template.
https://github.com/goodforgod/java-multi-module-template
java multi-module project template
Last synced: 6 days ago
JSON representation
Java Multi Module Project Template.
- Host: GitHub
- URL: https://github.com/goodforgod/java-multi-module-template
- Owner: GoodforGod
- License: apache-2.0
- Created: 2023-09-17T21:26:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-17T21:45:49.000Z (over 1 year ago)
- Last Synced: 2024-11-05T11:08:15.225Z (about 2 months ago)
- Topics: java, multi-module, project, template
- Language: Java
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java Template
Template for Java 17+ application.
## Features
- Gradle, build, wrapper, properties configured.
- [Code Style](https://goodforgod.dev/posts/3/), formatting , .gitignore configured.
- Dockerfile for packaging application configured.## Run
```shell
./gradlew run
```## 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
```