Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fapdash/vertx-5-gradle-jlink-example
Example project showing how to build a JVM runtime image with jlink of a Vert.x 5 project via Gradle.
https://github.com/fapdash/vertx-5-gradle-jlink-example
gradle java java-21 java-module java-modules jigsaw jlink jpms modular-jar module-info runtime-image vertx
Last synced: 10 days ago
JSON representation
Example project showing how to build a JVM runtime image with jlink of a Vert.x 5 project via Gradle.
- Host: GitHub
- URL: https://github.com/fapdash/vertx-5-gradle-jlink-example
- Owner: fapdash
- Created: 2025-01-27T23:11:14.000Z (11 days ago)
- Default Branch: main
- Last Pushed: 2025-01-27T23:34:22.000Z (11 days ago)
- Last Synced: 2025-01-28T00:29:51.881Z (11 days ago)
- Topics: gradle, java, java-21, java-module, java-modules, jigsaw, jlink, jpms, modular-jar, module-info, runtime-image, vertx
- Language: Java
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= Vert.x 5 Gradle jlink example
image:https://img.shields.io/badge/vert.x-5.0.0.CR3-purple.svg[link="https://vertx.io"]
This application was generated using http://start.vertx.io
== Build and run project through runtime image with jlink
First build the runtime image:
----
./gradlew clean jlink
----Then run the Vert.x application through the native image launcher:
----
build/jlink-image-test/bin/launch
----== Help
* https://vertx.io/docs/[Vert.x Documentation]
* https://stackoverflow.com/questions/tagged/vert.x?sort=newest&pageSize=15[Vert.x Stack Overflow]
* https://groups.google.com/forum/?fromgroups#!forum/vertx[Vert.x User Group]
* https://discord.gg/6ry7aqPWXy[Vert.x Discord]