Merge "Fixed a couple of runtime issues due to the existing support for the legacy...
[integration/distribution.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.2.0-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     <module>extra/toaster</module>
21   </modules>
22   <profiles>
23     <profile>
24       <id>dependencyConvergence</id>
25       <build>
26         <plugins>
27         <plugin>
28           <groupId>org.apache.maven.plugins</groupId>
29           <artifactId>maven-enforcer-plugin</artifactId>
30           <version>1.3.1</version>
31           <executions>
32             <execution>
33               <id>Dependency-Convergence</id>
34               <goals>
35                 <goal>enforce</goal>
36               </goals>
37               <configuration>
38                 <rules>
39                   <DependencyConvergence />
40                 </rules>
41               </configuration>
42             </execution>
43           </executions>
44         </plugin>
45         </plugins>
46       </build>
47     </profile>
48   </profiles>
49 </project>