Create Java project with Maven archetype syncope-archetype

Apache Syncope Archetype

Create a Java Project by archetype syncope-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DsecretKey="My-secretKey"   -DanonymousKey="My-anonymousKey"   -DarchetypeGroupId="org.apache.syncope"   -DarchetypeArtifactId="syncope-archetype"   -DarchetypeVersion="1.2.8"   -DinteractiveMode=false 

Required parameters for generate java project:

secretKey
validationRegex: none
anonymousKey
validationRegex: none

Generated Project modules

  • core
  • console

Details about maven archetype syncope-archetype

GroupId

GroupId

org.apache.syncope
ArtifactId

ArtifactId

syncope-archetype
Version

Version

1.2.8
Type

Type

maven-archetype

How to add to project

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