Create Java project with Maven archetype helloworld-archetype
This module defines a standard parent POM to use for various Incode applications and modules.
Its primary purpose is to make it easy to use a set up maven mixins (https://github.com/odavid/maven-plugins)
within child POMs. Specifically this means locking down the versions of plugins using pluginManagement.
It does NOT define any mixins for Apache Isis.
Create a Java Project by archetype helloworld-archetype with Command Line:
mvn archetype:generate -DgroupId="com.mycompany.app" -DartifactId="my-app-id" -DarchetypeGroupId="org.apache.isis.archetype" -DarchetypeArtifactId="helloworld-archetype" -DarchetypeVersion="2.0.0-M1" -DinteractiveMode=false
Details about maven archetype helloworld-archetype
GroupId |
GroupIdorg.apache.isis.archetype |
ArtifactId |
ArtifactIdhelloworld-archetype |
Version |
Version2.0.0-M1 |
Type |
Typemaven-archetype |
How to add to project