[ANN] Apache Maven Parent POMs 32 Released

2018-07-19 Thread Hervé Boutemy
The Apache Maven team is pleased to announce the release of the Maven Parent POMs Version 32. Maven Parent POMs include Maven Parent POM itself, but also Maven Plugins Parent POM, Maven Shared Components Parent POM, Maven Skins Parent POM and Maven Doxia Tools Parent POM.

Re: Programmatic access to enforcer plugin

2018-07-19 Thread Karl Heinz Marbaise
Hi, can explain more in detail what you like to achieve? Best would be based on an example... Apart from that maven-enforcer is intended to check for rules which if someone violates the defined rules...not really intended to make a report ?... Kind regards Karl Heinz Marbaise On

Re: influenceing the pom that is deployed

2018-07-19 Thread Karl Heinz Marbaise
Hi, The warnings during your build are intentionally and have their reason exactly the one that after a mvn install or mvn deploy the expression have not been replaced which makes the resulting pom's useless... This can solved by using the offical way using the properties 'revision',

influenceing the pom that is deployed

2018-07-19 Thread Christian Domsch
Hi, in our company we use some elaborate way how we stack patched on top of our product. The consequence of that is we use expressions for defining the version of a pom in the parent definition of our submodules. Example: Root pom: http://maven.apache.org/POM/4.0.0;

Programmatic access to enforcer plugin

2018-07-19 Thread Elliotte Rusty Harold
Short of forking the project, is any sort of programmatic API for the Maven enforcer plugin available? E.g. I'd like to point a rule at a dependency coordinates and get a report back in a somewhat more structured form than System.out.println. Has anyone done something like this? Are there any