Skip to content

Requirements and Installation

Nils Christian Ehmke edited this page Dec 14, 2018 · 5 revisions

feature-gen requires Java Runtime Environment 8 for the standalone generator and additionally Xtend 2.14 or higher for the Xtend active annotations.

In order to use feature-gen, you need at least to add the runtime library to your Maven pom.xml.

<dependency>
	<groupId>de.rhocas.featuregen</groupId>
	<artifactId>featuregen-lib</artifactId>
	<version>2.0.0</version>
</dependency>

Depending on whether you use the standalone generator or the active annotations, you also need to add one of the following dependencies.

<dependency>
	<groupId>de.rhocas.featuregen</groupId>
	<artifactId>featuregen-annotation-processor</artifactId>
	<version>2.0.0</version>
</dependency>
<dependency>
	<groupId>de.rhocas.featuregen</groupId>
	<artifactId>featuregen-generator</artifactId>
	<version>2.0.0</version>
</dependency>

If you are not using Maven as build tool, you can also download the JAR files directly from Maven Central.

Clone this wiki locally