Merge "In o.o.c.switchmanager.SpanConfig, handle node connector string format correctly."
[controller.git] / opendaylight / switchmanager / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.integrationtest</artifactId>
8     <version>0.5.0-SNAPSHOT</version>
9     <relativePath>../../commons/integrationtest</relativePath>
10   </parent>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15   </scm>
16
17   <artifactId>switchmanager.integrationtest</artifactId>
18   <version>0.4.0-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>switchmanager</artifactId>
24       <version>0.5.0-SNAPSHOT</version>
25     </dependency>
26       <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>switchmanager.implementation</artifactId>
29       <version>0.4.0-SNAPSHOT</version>
30     </dependency>
31      <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34       <version>0.5.0-SNAPSHOT</version>
35     </dependency>
36      <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal.implementation</artifactId>
39       <version>0.4.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44       <version>0.5.0-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>containermanager.it.implementation</artifactId>
49       <version>0.5.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>clustering.services</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>clustering.stub</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>configuration</artifactId>
64       <version>0.4.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>configuration.implementation</artifactId>
69       <version>0.4.0-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>protocol_plugins.stub</artifactId>
74       <version>0.4.0-SNAPSHOT</version>
75     </dependency>
76   </dependencies>
77   <properties>
78     <!-- Sonar jacoco plugin to get integration test coverage info -->
79     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
80     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
81     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
82     <sonar.language>java</sonar.language>
83   </properties>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.jacoco</groupId>
89         <artifactId>jacoco-maven-plugin</artifactId>
90         <version>${jacoco.version}</version>
91         <configuration>
92           <destFile>../implementation/target/jacoco-it.exec</destFile>
93           <includes>org.opendaylight.controller.*</includes>
94         </configuration>
95         <executions>
96           <execution>
97             <id>pre-test</id>
98             <goals>
99               <goal>prepare-agent</goal>
100             </goals>
101           </execution>
102           <execution>
103             <id>post-test</id>
104             <configuration>
105               <skip>true</skip>
106             </configuration>
107           </execution>
108         </executions>
109       </plugin>
110     </plugins>
111   </build>
112
113 </project>