https://github.com/dropwizard/dropwizard-archetypes
A collection of Maven Archetypes for bootstrapping development of a new Dropwizard Service.
https://github.com/dropwizard/dropwizard-archetypes
Last synced: about 1 year ago
JSON representation
A collection of Maven Archetypes for bootstrapping development of a new Dropwizard Service.
- Host: GitHub
- URL: https://github.com/dropwizard/dropwizard-archetypes
- Owner: dropwizard
- License: apache-2.0
- Created: 2023-09-25T11:54:01.000Z (over 2 years ago)
- Default Branch: release/4.0.x
- Last Pushed: 2024-10-28T08:31:31.000Z (over 1 year ago)
- Last Synced: 2024-10-30T03:37:44.280Z (over 1 year ago)
- Language: Shell
- Size: 188 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dropwizard Archetypes
How to create project using dropwizard archetype (interactive mode)
---
```
mvn archetype:generate \
-DarchetypeGroupId=io.dropwizard.archetypes \
-DarchetypeArtifactId=java-simple \
-DarchetypeVersion=[REPLACE ME WITH A VALID DROPWIZARD VERSION]
```
(when asked for ``$name`` during project creation via maven, make sure to use a camel case word such as ``HelloWorld`` as it is used to generate Configuration and Application classes such as ``HelloWorldConfiguration.java`` and ``HelloWorldApplication.java``. Furthermore, do not include any blank space for the same reason!)