Plugin Documentation
Goals available for this plugin:
Goal | Description |
---|---|
wurbelizer:help | Display help information on wurbelizer-maven-plugin. Call mvn wurbelizer:help -Ddetail=true -Dgoal=<goal-name> to display parameter details. |
wurbelizer:test-wurbel | Wurbel test sources. Scans the test sources for @wurblet anchors and executes the wurblets. The generated code from the wurblets is merged into the test sources. |
wurbelizer:wurbel | Wurbel sources. Scans the sources for @wurblet anchors and executes the wurblets. The generated code from the wurblets is merged into the sources. |
wurbelizer:wurbile | Wurbile Wurblets. The wurblet sources (wrbl-files) are translated to Java-sources and ser-files (serialized fixed text) and then compiled to Java class files. Those class files can later be instantiated as code generators by the Wurbler. See the wurbelizer:wurbel goal. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
Maven | 3.9.0 |
JDK | 17 |
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>org.wurbelizer</groupId> <artifactId>wurbelizer-maven-plugin</artifactId> <version>17.5.1.0</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>org.wurbelizer</groupId> <artifactId>wurbelizer-maven-plugin</artifactId> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"