Remove netty-config-api
[controller.git] / 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   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>odlparent-lite</artifactId>
7     <version>7.0.1</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>releasepom</artifactId>
12   <version>0.12.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <name>controller</name>
15   <!-- Used by Sonar to set project name -->
16
17   <modules>
18     <module>artifacts</module>
19
20     <!-- md-sal -->
21     <module>opendaylight/md-sal</module>
22     <!-- config -->
23     <module>opendaylight/config</module>
24
25     <module>opendaylight/model</module>
26
27     <module>opendaylight/blueprint</module>
28
29     <!-- Parents -->
30     <module>benchmark</module>
31     <module>opendaylight/commons/jolokia</module>
32
33     <!-- Karaf Distribution -->
34     <module>karaf</module>
35     <module>features</module>
36
37     <!-- archetypes -->
38     <module>opendaylight/archetypes</module>
39
40     <!-- documentation -->
41     <module>docs</module>
42   </modules>
43
44   <properties>
45     <maven.deploy.skip>true</maven.deploy.skip>
46     <maven.install.skip>true</maven.install.skip>
47   </properties>
48
49   <profiles>
50     <profile>
51       <id>sonar-jacoco-aggregate</id>
52       <activation>
53         <property>
54           <name>odl.jacoco.aggregateFile</name>
55         </property>
56       </activation>
57       <build>
58         <plugins>
59           <plugin>
60             <groupId>org.jacoco</groupId>
61             <artifactId>jacoco-maven-plugin</artifactId>
62             <executions>
63               <execution>
64                 <id>merge</id>
65                 <goals>
66                     <goal>merge</goal>
67                 </goals>
68                 <phase>generate-resources</phase>
69                 <configuration>
70                   <destFile>${odl.jacoco.aggregateFile}</destFile>
71                   <fileSets>
72                     <fileSet>
73                       <directory>${project.basedir}</directory>
74                       <includes>
75                         <include>**/target/code-coverage/*.exec</include>
76                       </includes>
77                     </fileSet>
78                   </fileSets>
79                 </configuration>
80               </execution>
81             </executions>
82           </plugin>
83         </plugins>
84       </build>
85     </profile>
86   </profiles>
87
88   <scm>
89     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
91     <tag>HEAD</tag>
92     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
93   </scm>
94 </project>