Goals available for this plugin:
| Goal | Description |
|---|---|
| compose:assemble | Assemble compose configuration and attach as secondary artifact |
| compose:down | Turn off compose application |
| compose:help | Display help information on compose-maven-plugin.
Call mvn compose:help -Ddetail=true -Dgoal=<goal-name> to display parameter details. |
| compose:link | Link compose configuration into single application |
| compose:up | Turn on compose application |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 3.9.6 |
| JDK | 17 |
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.honton.chas</groupId>
<artifactId>compose-maven-plugin</artifactId>
<version>0.0.18</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.honton.chas</groupId>
<artifactId>compose-maven-plugin</artifactId>
</plugin>
...
</plugins>
</build>
...
</project>For more information, see "Guide to Configuring Plug-ins"