https://github.com/unexist/showcase-archetype-quarkus
Archetype for new showcases [MIRROR]
https://github.com/unexist/showcase-archetype-quarkus
archetype quarkus showcase
Last synced: 2 months ago
JSON representation
Archetype for new showcases [MIRROR]
- Host: GitHub
- URL: https://github.com/unexist/showcase-archetype-quarkus
- Owner: unexist
- License: apache-2.0
- Created: 2021-06-10T05:45:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-26T15:53:02.000Z (almost 3 years ago)
- Last Synced: 2025-07-22T11:02:40.739Z (11 months ago)
- Topics: archetype, quarkus, showcase
- Language: Java
- Homepage: https://hg.unexist.dev/showcase-archetype-quarkus
- Size: 72.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Showcase for archetype based on quarkus
This project contains an archetype for quarkus showcases.
== Create a new service
[source,shell]
----
mvn archetype:generate \
-DarchetypeGroupId=dev.unexist.showcase \
-DarchetypeArtifactId=quarkus-showcase-archetype \
-DarchetypeVersion=0.1 \ <1>
-DgroupId= \ <2>
-DartifactId= \ <3>
-Dname= # <4>
----
<1> This is the version of the archetype, normally 0.1 should be fine for a starter. \
<2> The groupId sets the groupId of the new service and normally should be *dev.unexist.showcase*. \
<3> And this is the artifactId of the new service. \
<4> Lastly, this is the name of the new service.