Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/digimono/maven-archetypes
Maven archetypes
https://github.com/digimono/maven-archetypes
java maven maven-archetype
Last synced: 1 day ago
JSON representation
Maven archetypes
- Host: GitHub
- URL: https://github.com/digimono/maven-archetypes
- Owner: digimono
- License: apache-2.0
- Created: 2019-06-19T00:49:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T14:45:04.000Z (about 2 years ago)
- Last Synced: 2023-08-03T03:55:34.626Z (over 1 year ago)
- Topics: java, maven, maven-archetype
- Language: Java
- Size: 225 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maven archetypes
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0)
[![Maven Central](https://img.shields.io/maven-central/v/io.github.digimono/maven-super-pom.svg?color=blue&style=flat-square)](https://search.maven.org/search?q=g:io.github.digimono%20AND%20a:maven-super-pom)## Maven Super POM
## Installation
```bash
mvn clean install
```## Application archetype
```bash
mvn archetype:generate \
-DarchetypeGroupId=io.github.digimono \
-DarchetypeArtifactId=maven-application-archetype \
-DarchetypeVersion=${version} \
-DarchetypeCatalog=local \
-DinteractiveMode=false \
-DgroupId=io.github.digimono \
-DartifactId=spring-boot-scaffold
```## Multi-module archetype
```bash
mvn archetype:generate \
-DarchetypeGroupId=io.github.digimono \
-DarchetypeArtifactId=maven-multi-module-archetype \
-DarchetypeVersion=${version} \
-DarchetypeCatalog=local \
-DinteractiveMode=false \
-DgroupId=io.github.digimono \
-DartifactId=spring-boot-scaffold
```