37f68260bc051e3d1d32072c77968b4543189699
[controller.git] / opendaylight / switchmanager / 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>switchmanager.integrationtest</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>switchmanager</artifactId>
24       <version>0.5.1-SNAPSHOT</version>
25     </dependency>
26       <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>switchmanager.implementation</artifactId>
29       <version>0.4.1-SNAPSHOT</version>
30     </dependency>
31      <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34       <version>0.5.1-SNAPSHOT</version>
35     </dependency>
36      <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal.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     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>clustering.services</artifactId>
54       <version>0.4.1-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>clustering.stub</artifactId>
59       <version>0.4.1-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>configuration</artifactId>
64       <version>0.4.1-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>configuration.implementation</artifactId>
69       <version>0.4.1-SNAPSHOT</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>protocol_plugins.stub</artifactId>
74       <version>0.4.1-SNAPSHOT</version>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79     </dependency>
80     <!-- Add Pax Exam -->
81     <dependency>
82       <groupId>org.ops4j.pax.exam</groupId>
83       <artifactId>pax-exam-container-native</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.ops4j.pax.exam</groupId>
88       <artifactId>pax-exam-junit4</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.ops4j.pax.exam</groupId>
93       <artifactId>pax-exam-link-mvn</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.ops4j.pax.url</groupId>
98       <artifactId>pax-url-aether</artifactId>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>log4j-over-slf4j</artifactId>
104     </dependency>
105     <dependency>
106        <groupId>ch.qos.logback</groupId>
107        <artifactId>logback-core</artifactId>
108      </dependency>
109      <dependency>
110        <groupId>ch.qos.logback</groupId>
111        <artifactId>logback-classic</artifactId>
112      </dependency>
113   </dependencies>
114   <properties>
115     <!-- Sonar jacoco plugin to get integration test coverage info -->
116     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
117     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
118     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
119     <sonar.language>java</sonar.language>
120   </properties>
121
122   <build>
123     <plugins>
124       <plugin>
125         <groupId>org.jacoco</groupId>
126         <artifactId>jacoco-maven-plugin</artifactId>
127         <version>${jacoco.version}</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
150 </project>