yupiik-tools:simple-dependencies
Which format to use to dump them.
Coordinates
<plugin>
<groupId>io.yupiik.maven</groupId>
<artifactId>yupiik-tools-maven-plugin</artifactId>
<version>1.2.4-SNAPSHOT</version>
</plugin>
To call this goal from the command line execute: mvn yupiik-tools:simple-dependencies
.
To bind this goal in the build you can use:
<plugin>
<groupId>io.yupiik.maven</groupId>
<artifactId>yupiik-tools-maven-plugin</artifactId>
<version>1.2.4-SNAPSHOT</version>
<executions>
<execution>
<id>my-execution</id>
<goals>
<goal>simple-dependencies</goal>
</goals>
<configuration>
<!-- execution specific configuration come there -->
</configuration>
</execution>
</executions>
</plugin>
You can execute this goal particularly with mvn yupiik-tools:simple-dependencies@my-execution
command.
Configuration
-
format (
io.yupiik.maven.mojo.SimpleDependenciesMojo$Format
) -
Which format to use to dump them. Default value:
JSON
. Property:${yupiik.simple-dependencies.format}
.
-
output (
String
) -
Where to dump the dependencies, log to log them, else a file path. Default value:
${project.build.directory/dependencies.adoc
. Property:${yupiik.simple-dependencies.source}
.
-
scope (
String
) -
Which scope to include, use all to include them all. Default value:
all
. Property:${yupiik.simple-dependencies.scope}
.