------ Usage ------ Karl Heinz Marbaise ------ 2017-09-01 ~~ Copyright 2006 The Apache Software Foundation. ~~ ~~ Licensed under the Apache License, Version 2.0 (the "License"); ~~ you may not use this file except in compliance with the License. ~~ You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, software ~~ distributed under the License is distributed on an "AS IS" BASIS, ~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~~ See the License for the specific language governing permissions and ~~ limitations under the License. ~~ NOTE: For help with the syntax of this file, see: ~~ http://maven.apache.org/doxia/references/apt-format.html Usage * List Goal Assuming you have configured the Maven JMod Plugin {{{../usage.html}accordingly to the usage page}} like the following: +---- [...] [...] [...] maven-jmod-plugin ${project.version} true list list verify [...] +----- You can run via: +----- mvn clean verify +----- During the above call of Maven the <> files will be generated and by the <> goal you will get an output like the following (using toolchains): +---- [INFO] --- maven-jmod-plugin:${project.version}:list (list) @ first-jmod --- [INFO] Toolchain in maven-jmod-plugin: jmod [ /../jdk1.9.0_ea+181.jdk/Contents/Home/bin/jmod ] [INFO] The following files are contained in the module file /../maven-single-jmod-example/target/jmods/first-jmod.jmod [INFO] classes/module-info.class [INFO] classes/com/corporate/project/Main.class [INFO] conf/config.1 [INFO] conf/config.2 [INFO] conf/sub-configuration/config.sub [INFO] include/first.h [INFO] legal/first.md [INFO] bin/first.cmd [INFO] bin/first.sh [INFO] bin/test.sh [INFO] lib/native-lib.so [INFO] +----