Create Java project with Maven archetype simpleapp-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 simpleapp-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.isis.archetype"   -DarchetypeArtifactId="simpleapp-archetype"   -DarchetypeVersion="1.15.1"   -DinteractiveMode=false 

Generated Project modules

  • ${rootArtifactId}-module-simple
  • ${rootArtifactId}-application
  • ${rootArtifactId}-webapp

Details about maven archetype simpleapp-archetype

GroupId

GroupId

org.apache.isis.archetype
ArtifactId

ArtifactId

simpleapp-archetype
Version

Version

1.15.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.isis.archetype -DarchetypeArtifactId=simpleapp-archetype -DarchetypeVersion=1.15.1 -DinteractiveMode=false