Merge "method unsetFlowProgrammerNotifier was mis-spelled in activator causing the...
[controller.git] / opendaylight / md-sal / sal-binding-it / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <artifactId>sal-parent</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-binding-it</artifactId>
9     <scm>
10         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
11         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
12         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
13       <tag>HEAD</tag>
14   </scm>
15
16     <properties>
17         <exam.version>3.0.0</exam.version>
18         <url.version>1.5.0</url.version>
19         <!-- Sonar jacoco plugin to get integration test coverage info -->
20         <sonar.jacoco.reportPath>../sal-binding-broker/target/jacoco.exec</sonar.jacoco.reportPath>
21         <sonar.jacoco.itReportPath>../sal-binding-broker/target/jacoco-it.exec</sonar.jacoco.itReportPath>
22     </properties>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.ops4j.pax.exam</groupId>
28                 <artifactId>maven-paxexam-plugin</artifactId>
29                 <version>1.2.4</version>
30                 <executions>
31                     <execution>
32                         <id>generate-config</id>
33                         <goals>
34                             <goal>generate-depends-file</goal>
35                         </goals>
36                     </execution>
37                 </executions>
38             </plugin>
39             <plugin>
40                 <groupId>org.jacoco</groupId>
41                 <artifactId>jacoco-maven-plugin</artifactId>
42                 <configuration>
43                     <includes>org.opendaylight.controller.*</includes>
44                 </configuration>
45                 <executions>
46                     <execution>
47                         <id>pre-test</id>
48                         <goals>
49                             <goal>prepare-agent</goal>
50                         </goals>
51                     </execution>
52                     <execution>
53                         <id>post-test</id>
54                         <phase>test</phase>
55                         <goals>
56                             <goal>report</goal>
57                         </goals>
58                     </execution>
59                 </executions>
60             </plugin>
61             <plugin>
62                 <groupId>org.apache.maven.plugins</groupId>
63                 <artifactId>maven-surefire-plugin</artifactId>
64                 <version>2.14.1</version>
65                 <configuration>
66                     <reuseForks>false</reuseForks>
67                 </configuration>
68             </plugin>
69         </plugins>
70         <pluginManagement>
71             <plugins>
72                 <!--This plugin's configuration is used to store Eclipse
73                     m2e settings only. It has no influence on the Maven build itself. -->
74                 <plugin>
75                     <groupId>org.eclipse.m2e</groupId>
76                     <artifactId>lifecycle-mapping</artifactId>
77                     <version>1.0.0</version>
78                     <configuration>
79                         <lifecycleMappingMetadata>
80                             <pluginExecutions>
81                                 <pluginExecution>
82                                     <pluginExecutionFilter>
83                                         <groupId>
84                                             org.ops4j.pax.exam
85                                         </groupId>
86                                         <artifactId>
87                                             maven-paxexam-plugin
88                                         </artifactId>
89                                         <versionRange>
90                                             [1.2.4,)
91                                         </versionRange>
92                                         <goals>
93                                             <goal>
94                                                 generate-depends-file
95                                             </goal>
96                                         </goals>
97                                     </pluginExecutionFilter>
98                                     <action>
99                                         <ignore />
100                                     </action>
101                                 </pluginExecution>
102                             </pluginExecutions>
103                         </lifecycleMappingMetadata>
104                     </configuration>
105                 </plugin>
106                 <plugin>
107                     <groupId>org.jacoco</groupId>
108                     <artifactId>jacoco-maven-plugin</artifactId>
109                     <version>${jacoco.version}</version>
110                     <configuration>
111                         <destFile>../sal-binding-broker/target/jacoco-it.exec</destFile>
112                         <includes>org.opendaylight.controller.*</includes>
113                     </configuration>
114                     <executions>
115                         <execution>
116                             <id>pre-test</id>
117                             <goals>
118                                 <goal>prepare-agent</goal>
119                             </goals>
120                         </execution>
121                         <execution>
122                             <id>post-test</id>
123                             <configuration>
124                                 <skip>true</skip>
125                             </configuration>
126                         </execution>
127                     </executions>
128                 </plugin>
129             </plugins>
130         </pluginManagement>
131     </build>
132
133
134     <dependencies>
135         <!--Compile scopes for all testing dependencies are intentional-->
136         <!--This way, all testing dependencies can be transitively used by other integration test modules-->
137         <!--If the dependencies are test scoped, they are not visible to other maven modules depending on sal-binding-it-->
138
139         <!--TODO Create generic utilities(extract from this module) for integration tests on the controller-->
140         <dependency>
141             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
142             <artifactId>xtend-lib-osgi</artifactId>
143             <version>2.4.3</version>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>sal-binding-broker-impl</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.ops4j.pax.exam</groupId>
151             <artifactId>pax-exam-container-native</artifactId>
152             <scope>compile</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.ops4j.pax.exam</groupId>
156             <artifactId>pax-exam-junit4</artifactId>
157             <scope>compile</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>config-netconf-connector</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>yang-store-impl</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>logback-config</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.controller</groupId>
173             <artifactId>config-persister-impl</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.opendaylight.controller</groupId>
177             <artifactId>config-persister-file-xml-adapter</artifactId>
178         </dependency>
179         <dependency>
180             <groupId>org.eclipse.persistence</groupId>
181             <artifactId>org.eclipse.persistence.moxy</artifactId>
182         </dependency>
183         <dependency>
184             <groupId>org.eclipse.persistence</groupId>
185             <artifactId>org.eclipse.persistence.core</artifactId>
186         </dependency>
187         <dependency>
188             <groupId>org.opendaylight.controller</groupId>
189             <artifactId>netconf-impl</artifactId>
190         </dependency>
191         <dependency>
192             <groupId>org.opendaylight.controller</groupId>
193             <artifactId>netconf-monitoring</artifactId>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.controller</groupId>
197             <artifactId>netconf-client</artifactId>
198         </dependency>
199         <dependency>
200             <groupId>org.ops4j.pax.exam</groupId>
201             <artifactId>pax-exam</artifactId>
202             <version>${exam.version}</version>
203             <!-- Compile scope here is intentional, it is used in TestHelper
204                 class which could be downloaded via nexus and reused in other integration
205                 tests. -->
206             <scope>compile</scope>
207         </dependency>
208         <dependency>
209             <groupId>org.ops4j.pax.exam</groupId>
210             <artifactId>pax-exam-link-mvn</artifactId>
211             <scope>compile</scope>
212         </dependency>
213         <dependency>
214             <groupId>equinoxSDK381</groupId>
215             <artifactId>org.eclipse.osgi</artifactId>
216         </dependency>
217         <dependency>
218             <groupId>org.slf4j</groupId>
219             <artifactId>log4j-over-slf4j</artifactId>
220         </dependency>
221         <dependency>
222             <groupId>ch.qos.logback</groupId>
223             <artifactId>logback-core</artifactId>
224         </dependency>
225         <dependency>
226             <groupId>ch.qos.logback</groupId>
227             <artifactId>logback-classic</artifactId>
228         </dependency>
229         <dependency>
230             <groupId>org.mockito</groupId>
231             <artifactId>mockito-all</artifactId>
232         </dependency>
233         <dependency>
234             <groupId>org.opendaylight.controller.model</groupId>
235             <artifactId>model-flow-service</artifactId>
236             <scope>provided</scope>
237         </dependency>
238         <dependency>
239             <groupId>org.opendaylight.controller</groupId>
240             <artifactId>config-manager</artifactId>
241         </dependency>
242         <dependency>
243             <groupId>org.opendaylight.controller.model</groupId>
244             <artifactId>model-flow-management</artifactId>
245             <scope>provided</scope>
246         </dependency>
247         <dependency>
248             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
249             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
250             <version>4.0</version>
251         </dependency>
252     </dependencies>
253 </project>