Merge "fix of Bug 314"
[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     </dependency>
25       <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>switchmanager.implementation</artifactId>
28     </dependency>
29      <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal</artifactId>
32     </dependency>
33      <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal.implementation</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>containermanager</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager.it.implementation</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>clustering.services</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>clustering.stub</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>configuration</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>configuration.implementation</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>protocol_plugins.stub</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68     </dependency>
69     <!-- Add Pax Exam -->
70     <dependency>
71       <groupId>org.ops4j.pax.exam</groupId>
72       <artifactId>pax-exam-container-native</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.ops4j.pax.exam</groupId>
77       <artifactId>pax-exam-junit4</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.ops4j.pax.exam</groupId>
82       <artifactId>pax-exam-link-mvn</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.ops4j.pax.url</groupId>
87       <artifactId>pax-url-aether</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.slf4j</groupId>
92       <artifactId>log4j-over-slf4j</artifactId>
93     </dependency>
94     <dependency>
95        <groupId>ch.qos.logback</groupId>
96        <artifactId>logback-core</artifactId>
97      </dependency>
98      <dependency>
99        <groupId>ch.qos.logback</groupId>
100        <artifactId>logback-classic</artifactId>
101      </dependency>
102   </dependencies>
103   <properties>
104     <!-- Sonar jacoco plugin to get integration test coverage info -->
105     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
106     <sonar.jacoco.itReportPath>../implementation/target/jacoco-it.exec</sonar.jacoco.itReportPath>
107   </properties>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.jacoco</groupId>
113         <artifactId>jacoco-maven-plugin</artifactId>
114         <version>${jacoco.version}</version>
115         <configuration>
116           <destFile>../implementation/target/jacoco-it.exec</destFile>
117           <includes>org.opendaylight.controller.*</includes>
118         </configuration>
119         <executions>
120           <execution>
121             <id>pre-test</id>
122             <goals>
123               <goal>prepare-agent</goal>
124             </goals>
125           </execution>
126           <execution>
127             <id>post-test</id>
128             <configuration>
129               <skip>true</skip>
130             </configuration>
131           </execution>
132         </executions>
133       </plugin>
134     </plugins>
135   </build>
136
137 </project>