Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe Commits: 127acda5 by Tony CHEMIT at 2017-08-04T23:57:06+02:00 add minimun maven version in pom even if the m-versions-p does not print correct warnings... - - - - - 1 changed file: - pom.xml Changes: ===================================== pom.xml ===================================== --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,8 @@ <http://www.gnu.org/licenses/gpl-3.0.html>. #L% --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -855,6 +856,33 @@ </extensions> <plugins> + + + <plugin> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-maven</id> + <goals> + <goal>enforce</goal> + </goals> + <inherited>true</inherited> + <phase>initialize</phase> + <configuration> + <rules> + <requireMavenVersion> + <version>3.5.0</version> + </requireMavenVersion> + </rules> + <ignoreCache>true</ignoreCache> + <failFast>true</failFast> + <fail>true</fail> + + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/commit/127acda5bbe7bc5daa7a79c82ce3... --- View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/commit/127acda5bbe7bc5daa7a79c82ce3... You're receiving this email because of your account on gitlab.com.