https://github.com/retheviper/quarkussample
A simple sample of Quarkus.
https://github.com/retheviper/quarkussample
gradle kotlin quarkus rest-api
Last synced: 2 months ago
JSON representation
A simple sample of Quarkus.
- Host: GitHub
- URL: https://github.com/retheviper/quarkussample
- Owner: retheviper
- Created: 2021-08-23T14:10:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-30T12:42:29.000Z (over 4 years ago)
- Last Synced: 2025-04-13T05:55:16.513Z (about 1 year ago)
- Topics: gradle, kotlin, quarkus, rest-api
- Language: Kotlin
- Homepage:
- Size: 244 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quarkus Sample
## TL;DR
A simple sample of Rest API by [Quarkus](https://quarkus.io/) with Kotlin.
This is another implementation version of [Spring Boot Sample](https://github.com/retheviper/springbootsample).
In Construction!
## Includes
- [Gradle](https://gradle.org) (Kotlin DSL)
- [RESTEasy](https://resteasy.github.io/) (Reactive-Jackson)
- [REST Assured](https://rest-assured.io/)
## Build
### Uber-jar (for JVM)
1. Run below.
```shell
./gradlew quarkusBuild -Dquarkus.package.type=uber-jar
```
2. Jar file will be found in `/build`.
### Native build
1. Run below.
```shell
./gradlew build -Dquarkus.package.type=native
```
2. Executable file will be fount in `/build`.