Plugin Documentation
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.3.9 |
JDK | 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.wcm.devops.conga</groupId> <artifactId>conga-maven-plugin</artifactId> <version>1.15.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"