https://github.com/unexist/showcase-parent
Parent for all showcases [MIRROR]
https://github.com/unexist/showcase-parent
helidon parent quarkus showcase
Last synced: about 1 month ago
JSON representation
Parent for all showcases [MIRROR]
- Host: GitHub
- URL: https://github.com/unexist/showcase-parent
- Owner: unexist
- License: apache-2.0
- Created: 2021-04-02T16:01:20.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T14:04:05.000Z (about 2 months ago)
- Last Synced: 2025-03-21T15:24:26.757Z (about 2 months ago)
- Topics: helidon, parent, quarkus, showcase
- Homepage: https://hg.unexist.dev/showcase-parent
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Parent for showcases
This project holds a bill-of-material (BOM) for my showcase projects, to ease version handling and
tool configs.== Instructions
To use it, just copy the following lines to your pom:
[source,xml]
----dev.unexist.showcase
quarkus-parent
0.1----
== Profiles
Also included is a list of different profiles:
- **quarkus** - Latest stable version
- **quarkus-testing** - Latest QS version
- **hg** - Enables mercurial properties'
- **git** - Enables git properties
- **native** - Builds native versionThe quarkus version can be toggled with the **testing** property:
[source,shell]
----
mvn quarkus:dev -Dtesting=true
----Git can be enabled with the **git** property:
[source,shell]
----
mvn quarkus:dev -Dgit=true
----