Create Java project with Maven archetype java8-quickstart-archetype

Basic Java 8 archetype. Options: -testLibrary: [junit, testng, none]. DEFAULT: junit. Adds the requested test library to the POM deps. -compilerMode: [simple, test-only, retrolambda-main, retrolambda-all]. DEFAULT: simple. --simple: everything is compiled as Java 8. --test-only: set up test for Java 8, and main for Java 7. --retrolambda-main: main code is compiled as Java 8, and then converted to Java 7 via retrolambda. --retrolambda-all: all code is compiled as Java 8, and then converted to Java 7 via retrolambda. NOTE: Retrolambda support provided "as is" - if you have any problems, please file a ticket on the GitHub page!

Create a Java Project by archetype java8-quickstart-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DtestLibrary="My-testLibrary"   -DcompilerMode="My-compilerMode"   -DarchetypeGroupId="pl.org.miki"   -DarchetypeArtifactId="java8-quickstart-archetype"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

testLibrary
validationRegex: none
compilerMode
validationRegex: none

Details about maven archetype java8-quickstart-archetype

License

License

GroupId

GroupId

pl.org.miki
ArtifactId

ArtifactId

java8-quickstart-archetype
Version

Version

1.0.0
Type

Type

maven-archetype
Description

Description

java8-quickstart-archetype
Basic Java 8 archetype. Options: -testLibrary: [junit, testng, none]. DEFAULT: junit. Adds the requested test library to the POM deps. -compilerMode: [simple, test-only, retrolambda-main, retrolambda-all]. DEFAULT: simple. --simple: everything is compiled as Java 8. --test-only: set up test for Java 8, and main for Java 7. --retrolambda-main: main code is compiled as Java 8, and then converted to Java 7 via retrolambda. --retrolambda-all: all code is compiled as Java 8, and then converted to Java 7 via retrolambda. NOTE: Retrolambda support provided "as is" - if you have any problems, please file a ticket on the GitHub page!
Project URL

Project URL

https://github.com/mikkoz/java8-quickstart-archetype
Source Code Management

Source Code Management

https://github.com/mikkoz/java8-quickstart-archetype.git

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=pl.org.miki -DarchetypeArtifactId=java8-quickstart-archetype -DarchetypeVersion=1.0.0 -DinteractiveMode=false

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.