[maven-release-plugin] prepare for next development iteration
[integration.git] / distributions / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7   <parent>
8     <groupId>org.opendaylight.integration</groupId>
9     <artifactId>root</artifactId>
10     <version>0.1.2-SNAPSHOT</version>
11     <relativePath>../</relativePath>
12   </parent>
13   <artifactId>distributions</artifactId>
14   <name>OpenDaylight Distributions</name>
15   <packaging>pom</packaging>
16   <modules>
17     <module>base/</module>
18     <module>virtualization/</module>
19     <module>serviceprovider/</module>
20   </modules>
21   <profiles>
22     <profile>
23       <id>dependencyConvergence</id>
24       <build>
25         <plugins>
26         <plugin>
27           <groupId>org.apache.maven.plugins</groupId>
28           <artifactId>maven-enforcer-plugin</artifactId>
29           <version>1.3.1</version>
30           <executions>
31             <execution>
32               <id>Dependency-Convergence</id>
33               <goals>
34                 <goal>enforce</goal>
35               </goals>
36               <configuration>
37                 <rules>
38                   <DependencyConvergence />
39                 </rules>
40               </configuration>
41             </execution>
42           </executions>
43         </plugin>
44         </plugins>
45       </build>
46     </profile>
47   </profiles>
48 </project>