Merge "Fixed netconf monitoring."
[controller.git] / opendaylight / topologymanager / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.integrationtest</artifactId>
9     <version>0.5.1-SNAPSHOT</version>
10     <relativePath>../../commons/integrationtest</relativePath>
11   </parent>
12   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16   </scm>
17
18   <artifactId>topologymanager.integrationtest</artifactId>
19   <version>0.4.0-SNAPSHOT</version>
20   <dependencies>
21     <dependency>
22       <groupId>org.ops4j.pax.exam</groupId>
23       <artifactId>pax-exam-container-native</artifactId>
24       <version>${exam.version}</version>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>protocol_plugins.stub</artifactId>
30       <version>0.4.1-SNAPSHOT</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal</artifactId>
35       <version>0.5.0-SNAPSHOT</version>
36     </dependency>
37      <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal.implementation</artifactId>
40       <version>0.4.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>containermanager</artifactId>
45       <version>0.5.0-SNAPSHOT</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>containermanager.it.implementation</artifactId>
50       <version>0.5.0-SNAPSHOT</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>forwardingrulesmanager</artifactId>
55       <version>0.4.0-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>clustering.services</artifactId>
60       <version>0.4.0-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>clustering.stub</artifactId>
65       <version>0.4.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>statisticsmanager</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>statisticsmanager.implementation</artifactId>
75       <version>0.4.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>switchmanager.implementation</artifactId>
80       <version>0.4.0-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>switchmanager</artifactId>
85     </dependency>
86
87       <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>configuration</artifactId>
90       <version>0.4.0-SNAPSHOT</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>configuration.implementation</artifactId>
95       <version>0.4.0-SNAPSHOT</version>
96     </dependency>
97       <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>hosttracker</artifactId>
100       <version>${hosttracker.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>topologymanager</artifactId>
105       <version>0.4.0-SNAPSHOT</version>
106     </dependency>
107   </dependencies>
108   <properties>
109     <!-- Sonar jacoco plugin to get integration test coverage info -->
110     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
111     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
112   </properties>
113   <build>
114     <pluginManagement>
115       <plugins>
116         <plugin>
117           <groupId>org.jacoco</groupId>
118           <artifactId>jacoco-maven-plugin</artifactId>
119           <version>0.5.3.201107060350</version>
120         </plugin>
121       </plugins>
122     </pluginManagement>
123     <plugins>
124       <plugin>
125         <groupId>org.jacoco</groupId>
126         <artifactId>jacoco-maven-plugin</artifactId>
127         <version>0.5.3.201107060350</version>
128         <configuration>
129           <destFile>../implementation/target/jacoco-it.exec</destFile>
130           <includes>org.opendaylight.controller.*</includes>
131         </configuration>
132         <executions>
133           <execution>
134             <id>pre-test</id>
135             <goals>
136               <goal>prepare-agent</goal>
137             </goals>
138           </execution>
139           <execution>
140             <id>post-test</id>
141             <configuration>
142               <skip>true</skip>
143             </configuration>
144           </execution>
145         </executions>
146       </plugin>
147     </plugins>
148   </build>
149 </project>