Removing Old Hydrogen distributions from Master
[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.3.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>extra/toaster</module>
18     <module>extra/karaf</module>
19   </modules>
20   <profiles>
21     <profile>
22       <id>dependencyConvergence</id>
23       <build>
24         <plugins>
25         <plugin>
26           <groupId>org.apache.maven.plugins</groupId>
27           <artifactId>maven-enforcer-plugin</artifactId>
28           <version>1.3.1</version>
29           <executions>
30             <execution>
31               <id>Dependency-Convergence</id>
32               <goals>
33                 <goal>enforce</goal>
34               </goals>
35               <configuration>
36                 <rules>
37                   <DependencyConvergence />
38                 </rules>
39               </configuration>
40             </execution>
41           </executions>
42         </plugin>
43         </plugins>
44       </build>
45     </profile>
46   </profiles>
47 </project>