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

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]

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.