This is an automated email from the ASF dual-hosted git repository. rotty3000 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git
commit 9a468e15262fd55a65f3701d10c6b7b58c7898b3 Author: Raymond Auge <[email protected]> AuthorDate: Sat Nov 20 22:56:34 2021 -0500 add diagnostics output plugin Signed-off-by: Raymond Auge <[email protected]> --- pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index 901bbae..df2c101 100644 --- a/pom.xml +++ b/pom.xml @@ -688,6 +688,29 @@ </pluginManagement> <plugins> <plugin> + <!-- + This is used for diagnostics by invoking it like: + + mvn antrun:run@props [-N] + --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <id>props</id> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <echoproperties /> + </target> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.2.7</version>
