Plugin Documentation
This report describes goals, parameters details, requirements and sample usage of this plugin.
Goals
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 | 21 | 
System Requirements History
The following specifies the minimum requirements to run this Maven plugin for historical versions:
| Plugin Version | Maven | JDK | 
|---|---|---|
| from 21.6.0.0 to 21.6.4.0 | - | 21 | 
| from 17.3.2.0 to 17.5.1.0 | - | 17 | 
| from 11.2.2.1 to 11.3.1.2 | - | 11 | 
| from 8.2.1.2 to 8.2.2.5 | - | 8 | 
| 2.2.0 | - | 11 | 
| from 2.0.3 to 2.1.1 | - | 8 | 
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>21.6.4.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"


