An open API service indexing awesome lists of open source software.

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.

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/)