Plugin Details
This report describes goals, parameters details, requirements and sample usage of this plugin.
Goals
Goals available for this plugin:
| Goal | Description |
|---|---|
| conga:definition-package | Packages the definitions in a JAR file. |
| conga:generate | Generates configuration using CONGA generator. |
| conga:generate-version-info | Generates a file with information CONGA maven plugin version and CONGA plugins versions used to generate this artifact. |
| conga:help | Display help information on conga-maven-plugin. Call mvn conga:help -Ddetail=true -Dgoal=<goal-name> to display parameter details. |
| conga:package | Packages the generated configurations in a ZIP file. |
| conga:validate | Validates definitions by trying to parse them with model reader or compile them via handlebars. Validates that the CONGA maven plugin version and CONGA plugin versions match or are newer than those versions used when generating the dependency artifacts. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 3.8.6 |
| JDK | 21 |
System Requirements History
The following specifies the minimum requirements to run this Maven plugin for historical versions:
| Plugin Version | Maven | JDK |
|---|---|---|
| from 1.18.0 to 1.19.0 | 3.3.9 | 17 |
| from 1.15.0 to 1.17.6 | 3.3.9 | 11 |
| from 1.6.0 to 1.14.12 | 3.3.9 | 8 |
| 1.5.0 | 3.0.5 | 8 |
| from 1.0.0 to 1.4.4 | - | 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>io.wcm.devops.conga</groupId>
<artifactId>conga-maven-plugin</artifactId>
<version>1.19.1-SNAPSHOT</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>conga-maven-plugin</artifactId>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"