https://github.com/rubensgomes/ms-reqresp-lib
A library of base request response types to be used by microservices.
https://github.com/rubensgomes/ms-reqresp-lib
java library microservice request response
Last synced: 7 months ago
JSON representation
A library of base request response types to be used by microservices.
- Host: GitHub
- URL: https://github.com/rubensgomes/ms-reqresp-lib
- Owner: rubensgomes
- License: apache-2.0
- Created: 2025-06-04T23:18:57.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-21T01:03:43.000Z (7 months ago)
- Last Synced: 2025-08-21T02:44:21.945Z (7 months ago)
- Topics: java, library, microservice, request, response
- Language: Java
- Homepage: https://github.com/rubensgomes
- Size: 153 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ms-reqresp-lib
Base request and response types to be used by microservices.
## Display Java Tools Installed
```shell
./gradlew -q javaToolchains
```
### Update the gradlew wrapper version
```shell
./gradlew wrapper --gradle-version=9.0.0 --distribution-type=bin
```
## Clean, Build, Test, Assemble, Publish, Release
```shell
./gradlew --info clean
```
```shell
./gradlew :lib:spotlessApply
```
```shell
./gradlew --info clean build
```
```shell
# --info is required for Grdle to display logs from tests
./gradlew --info clean test
```
```shell
./gradlew --info jar
```
```shell
./gradlew --info assemble
```
```shell
git commit -m "fixes and refactorings" -a
git push
```
```shell
# only Rubens can release
./gradlew --info release
```
```shell
git checkout release
git pull
./gradlew --info publish
git checkout main
```
---
Author: [Rubens Gomes](https://rubensgomes.com/)