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