Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
127acda5
by Tony CHEMIT at 2017-08-04T23:57:06+02:00
1 changed file:
Changes:
| ... | ... | @@ -20,7 +20,8 @@ |
| 20 | 20 |
<http://www.gnu.org/licenses/gpl-3.0.html>.
|
| 21 | 21 |
#L%
|
| 22 | 22 |
-->
|
| 23 |
-<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">
|
|
| 23 |
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
| 24 |
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
| 24 | 25 |
<modelVersion>4.0.0</modelVersion>
|
| 25 | 26 |
|
| 26 | 27 |
<parent>
|
| ... | ... | @@ -855,6 +856,33 @@ |
| 855 | 856 |
</extensions>
|
| 856 | 857 |
|
| 857 | 858 |
<plugins>
|
| 859 |
+ |
|
| 860 |
+ |
|
| 861 |
+ <plugin>
|
|
| 862 |
+ <artifactId>maven-enforcer-plugin</artifactId>
|
|
| 863 |
+ <executions>
|
|
| 864 |
+ <execution>
|
|
| 865 |
+ <id>enforce-maven</id>
|
|
| 866 |
+ <goals>
|
|
| 867 |
+ <goal>enforce</goal>
|
|
| 868 |
+ </goals>
|
|
| 869 |
+ <inherited>true</inherited>
|
|
| 870 |
+ <phase>initialize</phase>
|
|
| 871 |
+ <configuration>
|
|
| 872 |
+ <rules>
|
|
| 873 |
+ <requireMavenVersion>
|
|
| 874 |
+ <version>3.5.0</version>
|
|
| 875 |
+ </requireMavenVersion>
|
|
| 876 |
+ </rules>
|
|
| 877 |
+ <ignoreCache>true</ignoreCache>
|
|
| 878 |
+ <failFast>true</failFast>
|
|
| 879 |
+ <fail>true</fail>
|
|
| 880 |
+ |
|
| 881 |
+ </configuration>
|
|
| 882 |
+ </execution>
|
|
| 883 |
+ </executions>
|
|
| 884 |
+ </plugin>
|
|
| 885 |
+ |
|
| 858 | 886 |
<plugin>
|
| 859 | 887 |
<groupId>org.codehaus.mojo</groupId>
|
| 860 | 888 |
<artifactId>buildnumber-maven-plugin</artifactId>
|