Create Java project with Maven archetype xtend-archetype

Xtend is a little language that compiles into idiomatic Java source code. You can use any existing Java library seamlessly from Xtend (and vice-versa). The compiled output is readable and pretty-printed, and tends to run as fast or faster than the equivalent handwritten Java code. It's the CoffeeScript for Java.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DsourceEncoding="My-sourceEncoding"   -DjavaVersion="My-javaVersion"   -DarchetypeGroupId="org.eclipse.xtend"   -DarchetypeArtifactId="xtend-archetype"   -DarchetypeVersion="2.27.0"   -DinteractiveMode=false 

Required parameters for generate java project:

sourceEncoding
validationRegex: none
javaVersion
validationRegex: none

Details about maven archetype xtend-archetype

License

License

GroupId

GroupId

org.eclipse.xtend
ArtifactId

ArtifactId

xtend-archetype
Version

Version

2.27.0
Type

Type

maven-archetype
Description

Description

Xtend is a little language that compiles into idiomatic Java source code. You can use any existing Java library seamlessly from Xtend (and vice-versa). The compiled output is readable and pretty-printed, and tends to run as fast or faster than the equivalent handwritten Java code. It's the CoffeeScript for Java.
Project URL

Project URL

http://xtend-lang.org/xtend-archetype

How to add to project

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

Dependencies

test (1)

Group / Artifact Type Version
org.eclipse.xtend : xtend-maven-plugin jar 2.27.0

Project Modules

There are no modules declared in this project.