Plugin Documentation
This report describes goals, parameters details, requirements and sample usage of this plugin.
Goals
Goals available for this plugin:
Goal | Description |
---|---|
reflective-fluent-builders:generate-builders | A maven plugin for generating fluent builders for existing classes with the help of reflection. This can be useful in cases where it is not possible (or very hard) to change the sources of said classes to generate builders directly. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
Maven | 3.9.8 |
JDK | 17 |
System Requirements History
The following specifies the minimum requirements to run this Maven plugin for historical versions:
Plugin Version | Maven | JDK |
---|---|---|
from 2.1.0 to 2.1.1 | - | 17 |
2.0.0-java8 | - | 8 |
2.0.0 | - | 11 |
1.7.2-java8 | - | 8 |
1.7.2 | - | 11 |
1.7.1-java8 | - | 8 |
1.7.1 | - | 11 |
1.7.0-java8 | - | 8 |
1.7.0 | - | 11 |
from 1.5.0-java8 to 1.6.0-java8 | - | 8 |
1.5.0 | - | 11 |
1.4.0-java8 | - | 8 |
1.4.0 | - | 11 |
1.3.0-java8 | - | 8 |
1.3.0 | - | 11 |
1.2.0-java8 | - | 8 |
1.2.0 | - | 11 |
1.1.0-java8 | - | 8 |
1.1.0 | - | 11 |
1.0.0-java8 | - | 8 |
1.0.0 | - | 11 |
0.4.0-java8 | - | 8 |
from 0.1.0 to 0.4.0 | - | 11 |
Usage
You should specify the version in your project's plugin configuration:
<project> ... <build> <!-- To define the plugin version in your parent POM --> <pluginManagement> <plugins> <plugin> <groupId>io.github.tobi-laa</groupId> <artifactId>reflective-fluent-builders-maven-plugin</artifactId> <version>2.1.1</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>io.github.tobi-laa</groupId> <artifactId>reflective-fluent-builders-maven-plugin</artifactId> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"