Create Java project with Maven archetype java-minimal

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Create a Java Project by archetype java-minimal with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Djava_version="My-java_version"   -DarchetypeGroupId="org.sterl"   -DarchetypeArtifactId="java-minimal"   -DarchetypeVersion="1.1.0"   -DinteractiveMode=false 

Required parameters for generate java project:

java_version
validationRegex: none

Details about maven archetype java-minimal

GroupId

GroupId

org.sterl
ArtifactId

ArtifactId

java-minimal
Version

Version

1.1.0
Type

Type

maven-archetype
Description

Description

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/
Source Code Management

Source Code Management

https://github.com/sterlp/archetypes

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.sterl -DarchetypeArtifactId=java-minimal -DarchetypeVersion=1.1.0 -DinteractiveMode=false

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.