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