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