Create Java project with Maven archetype emt-xtext-archetype

Maven archetype that creates an Xtext project with a multi module Maven layout and Tycho (manifest-first approach).

Create a Java Project by archetype emt-xtext-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -Dversion="My-version"   -DeclipseVersion="My-eclipseVersion"   -Dpackage="My-package"   -DpackagePath="My-packagePath"   -DbasePackage="My-basePackage"   -DbasePackagePath="My-basePackagePath"   -DdslName="My-dslName"   -DtechName="My-techName"   -DdslExtension="My-dslExtension"   -DfullName="My-fullName"   -Durl="My-url"   -DarchetypeGroupId="org.fuin.archetypes"   -DarchetypeArtifactId="emt-xtext-archetype"   -DarchetypeVersion="0.2.0"   -DinteractiveMode=false 

Required parameters for generate java project:

groupId
validationRegex: none
artifactId
validationRegex: none
version
validationRegex: none
eclipseVersion
validationRegex: none
package
validationRegex: none
packagePath
validationRegex: none
basePackage
validationRegex: none
basePackagePath
validationRegex: none
dslName
validationRegex: none
techName
validationRegex: none
dslExtension
validationRegex: none
fullName
validationRegex: none
url
validationRegex: none

Details about maven archetype emt-xtext-archetype

GroupId

GroupId

org.fuin.archetypes
ArtifactId

ArtifactId

emt-xtext-archetype
Version

Version

0.2.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.fuin.archetypes -DarchetypeArtifactId=emt-xtext-archetype -DarchetypeVersion=0.2.0 -DinteractiveMode=false