MVN

pl.org.miki : java8-quickstart-archetype

Maven & Gradle

Jul 21, 2014

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!

mvn archetype:generate -DarchetypeGroupId=pl.org.miki -DarchetypeArtifactId=java8-quickstart-archetype -DarchetypeVersion=1.0.0
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of pl.org.miki : java8-quickstart-archetype to generate a Maven project - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of pl.org.miki : java8-quickstart-archetype to generate a Maven project - All Versions:

Version Vulnerabilities Updated
1.0.x
java8-quickstart-archetype-1.0.0

How to generate a maven project from archetype

Instead of manually creating the directory structure needed for an archetype, simply use:

mvn archetype:generate -DarchetypeGroupId=pl.org.miki -DarchetypeArtifactId=java8-quickstart-archetype -DarchetypeVersion=1.0.0

Advertisement