Merge "Changed TopologyManager to ignore edges that contain invalid node connectors."
[controller.git] / opendaylight / clustering / integrationtest / 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.controller</groupId>
6     <artifactId>commons.integrationtest</artifactId>
7     <version>0.5.1-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>clustering.services.integrationtest</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>clustering.services</artifactId>
24       <version>0.4.1-SNAPSHOT</version>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal</artifactId>
29       <version>0.5.1-SNAPSHOT</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal.implementation</artifactId>
34       <version>0.4.1-SNAPSHOT</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>clustering.services-implementation</artifactId>
39       <version>0.4.1-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44       <version>0.5.1-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>containermanager.it.implementation</artifactId>
49       <version>0.5.1-SNAPSHOT</version>
50     </dependency>
51   </dependencies>
52   <properties>
53     <!-- Sonar jacoco plugin to get integration test coverage info -->
54     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
55     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
56     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
57     <sonar.language>java</sonar.language>
58   </properties>
59   <build>
60     <pluginManagement>
61       <plugins>
62         <plugin>
63           <groupId>org.jacoco</groupId>
64           <artifactId>jacoco-maven-plugin</artifactId>
65           <version>0.5.3.201107060350</version>
66         </plugin>
67       </plugins>
68     </pluginManagement>
69     <plugins>
70       <plugin>
71         <groupId>org.jacoco</groupId>
72         <artifactId>jacoco-maven-plugin</artifactId>
73         <version>${jacoco.version}</version>
74         <configuration>
75           <destFile>../implementation/target/jacoco-it.exec</destFile>
76           <includes>org.opendaylight.controller.*</includes>
77         </configuration>
78         <executions>
79           <execution>
80             <id>pre-test</id>
81             <goals>
82               <goal>prepare-agent</goal>
83             </goals>
84           </execution>
85           <execution>
86             <id>post-test</id>
87             <configuration>
88               <skip>true</skip>
89             </configuration>
90           </execution>
91         </executions>
92       </plugin>
93     </plugins>
94   </build>
95 </project>