Create Java project with Maven archetype eclipse-project

An archetype to create a stub for Eclipse projects as part of the Palladio Simulator.

Create a Java Project by archetype eclipse-project with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dpackage="My-package"   -DartifactId="My-artifactId"   -Dversion="My-version"   -DpalladioParentVersion="My-palladioParentVersion"   -DpalladioTpRefresherVersion="My-palladioTpRefresherVersion"   -DtychoPluginVersion="My-tychoPluginVersion"   -DarchetypeGroupId="org.palladiosimulator"   -DarchetypeArtifactId="eclipse-project"   -DarchetypeVersion="0.1.0"   -DinteractiveMode=false 

Required parameters for generate java project:

package
validationRegex: none
artifactId
validationRegex: none
version
validationRegex: none
palladioParentVersion
validationRegex: none
palladioTpRefresherVersion
validationRegex: none
tychoPluginVersion
validationRegex: none

Generated Project modules

  • bundles
  • features
  • tests
  • releng

Details about maven archetype eclipse-project

GroupId

GroupId

org.palladiosimulator
ArtifactId

ArtifactId

eclipse-project
Version

Version

0.1.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.palladiosimulator -DarchetypeArtifactId=eclipse-project -DarchetypeVersion=0.1.0 -DinteractiveMode=false