Merge "Switch to using yangtools version of mockito-configuration"
[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"
2     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         <artifactId>sal-parent</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-it</artifactId>
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:MD-SAL</url>
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         <netconf.version>0.2.3-SNAPSHOT</netconf.version>
23         <config.version>0.2.3-SNAPSHOT</config.version>
24         <moxy.controller.version>2.5.0</moxy.controller.version>
25     </properties>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.ops4j.pax.exam</groupId>
31                 <artifactId>maven-paxexam-plugin</artifactId>
32                 <version>1.2.4</version>
33                 <executions>
34                     <execution>
35                         <id>generate-config</id>
36                         <goals>
37                             <goal>generate-depends-file</goal>
38                         </goals>
39                     </execution>
40                 </executions>
41             </plugin>
42             <plugin>
43                 <groupId>org.jacoco</groupId>
44                 <artifactId>jacoco-maven-plugin</artifactId>
45                 <configuration>
46                     <includes>org.opendaylight.controller.*</includes>
47                 </configuration>
48                 <executions>
49                     <execution>
50                         <id>pre-test</id>
51                         <goals>
52                             <goal>prepare-agent</goal>
53                         </goals>
54                     </execution>
55                     <execution>
56                         <id>post-test</id>
57                         <phase>test</phase>
58                         <goals>
59                             <goal>report</goal>
60                         </goals>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65         <pluginManagement>
66             <plugins>
67                 <!--This plugin's configuration is used to store Eclipse
68                     m2e settings only. It has no influence on the Maven build itself. -->
69                 <plugin>
70                     <groupId>org.eclipse.m2e</groupId>
71                     <artifactId>lifecycle-mapping</artifactId>
72                     <version>1.0.0</version>
73                     <configuration>
74                         <lifecycleMappingMetadata>
75                             <pluginExecutions>
76                                 <pluginExecution>
77                                     <pluginExecutionFilter>
78                                         <groupId>
79                                             org.ops4j.pax.exam
80                                         </groupId>
81                                         <artifactId>
82                                             maven-paxexam-plugin
83                                         </artifactId>
84                                         <versionRange>
85                                             [1.2.4,)
86                                         </versionRange>
87                                         <goals>
88                                             <goal>
89                                                 generate-depends-file
90                                             </goal>
91                                         </goals>
92                                     </pluginExecutionFilter>
93                                     <action>
94                                         <ignore></ignore>
95                                     </action>
96                                 </pluginExecution>
97                             </pluginExecutions>
98                         </lifecycleMappingMetadata>
99                     </configuration>
100                 </plugin>
101                 <plugin>
102                     <groupId>org.jacoco</groupId>
103                     <artifactId>jacoco-maven-plugin</artifactId>
104                     <version>${jacoco.version}</version>
105                     <configuration>
106                         <destFile>../sal-binding-broker/target/jacoco-it.exec</destFile>
107                         <includes>org.opendaylight.controller.*</includes>
108                     </configuration>
109                     <executions>
110                         <execution>
111                             <id>pre-test</id>
112                             <goals>
113                                 <goal>prepare-agent</goal>
114                             </goals>
115                         </execution>
116                         <execution>
117                             <id>post-test</id>
118                             <configuration>
119                                 <skip>true</skip>
120                             </configuration>
121                         </execution>
122                     </executions>
123                 </plugin>
124             </plugins>
125         </pluginManagement>
126     </build>
127
128
129     <dependencies>
130
131         <dependency>
132             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
133             <artifactId>xtend-lib-osgi</artifactId>
134             <version>2.4.3</version>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>sal-binding-broker-impl</artifactId>
140             <version>1.0-SNAPSHOT</version>
141             <scope>provided</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.ops4j.pax.exam</groupId>
145             <artifactId>pax-exam-container-native</artifactId>
146             <version>${exam.version}</version>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>org.ops4j.pax.exam</groupId>
151             <artifactId>pax-exam-junit4</artifactId>
152             <version>${exam.version}</version>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>config-netconf-connector</artifactId>
158             <version>${netconf.version}</version>
159             <scope>test</scope>
160         </dependency>
161         <dependency>
162             <groupId>org.opendaylight.controller</groupId>
163             <artifactId>yang-store-impl</artifactId>
164             <version>${config.version}</version>
165         </dependency>
166         <dependency>
167             <groupId>org.opendaylight.controller</groupId>
168             <artifactId>logback-config</artifactId>
169             <version>${config.version}</version>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.controller</groupId>
173             <artifactId>config-persister-impl</artifactId>
174             <version>${config.version}</version>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>config-persister-file-xml-adapter</artifactId>
179             <version>${config.version}</version>
180         </dependency>
181         <dependency>
182             <groupId>org.eclipse.persistence</groupId>
183             <artifactId>org.eclipse.persistence.moxy</artifactId>
184             <version>${moxy.controller.version}</version>
185         </dependency>
186         <dependency>
187             <groupId>org.eclipse.persistence</groupId>
188             <artifactId>org.eclipse.persistence.core</artifactId>
189             <version>${moxy.controller.version}</version>
190         </dependency>
191         <dependency>
192             <groupId>org.opendaylight.controller</groupId>
193             <artifactId>netconf-impl</artifactId>
194             <version>${netconf.version}</version>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.controller</groupId>
198             <artifactId>netconf-monitoring</artifactId>
199             <version>${netconf.version}</version>
200         </dependency>
201         <dependency>
202             <groupId>org.opendaylight.controller</groupId>
203             <artifactId>netconf-client</artifactId>
204             <version>${netconf.version}</version>
205         </dependency>
206         <dependency>
207             <groupId>org.ops4j.pax.exam</groupId>
208             <artifactId>pax-exam</artifactId>
209             <version>${exam.version}</version>
210             <!-- Compile scope here is intentional, it is used in TestHelper
211                 class which could be downloaded via nexus and reused in other integration
212                 tests. -->
213             <scope>compile</scope>
214         </dependency>
215         <dependency>
216             <groupId>org.ops4j.pax.exam</groupId>
217             <artifactId>pax-exam-link-mvn</artifactId>
218             <version>${exam.version}</version>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>equinoxSDK381</groupId>
223             <artifactId>org.eclipse.osgi</artifactId>
224             <version>3.8.1.v20120830-144521</version>
225             <scope>test</scope>
226         </dependency>
227         <dependency>
228             <groupId>org.slf4j</groupId>
229             <artifactId>log4j-over-slf4j</artifactId>
230             <version>1.7.2</version>
231         </dependency>
232         <dependency>
233             <groupId>ch.qos.logback</groupId>
234             <artifactId>logback-core</artifactId>
235             <version>1.0.9</version>
236         </dependency>
237         <dependency>
238             <groupId>ch.qos.logback</groupId>
239             <artifactId>logback-classic</artifactId>
240             <version>1.0.9</version>
241         </dependency>
242         <dependency>
243             <groupId>org.mockito</groupId>
244             <artifactId>mockito-all</artifactId>
245             <scope>test</scope>
246         </dependency>
247         <dependency>
248             <groupId>org.opendaylight.controller.model</groupId>
249             <artifactId>model-flow-service</artifactId>
250             <version>1.0-SNAPSHOT</version>
251             <scope>provided</scope>
252         </dependency>
253         <dependency>
254             <groupId>org.opendaylight.controller</groupId>
255             <artifactId>config-manager</artifactId>
256             <version>0.2.3-SNAPSHOT</version>
257         </dependency>
258         <dependency>
259             <groupId>org.opendaylight.controller.model</groupId>
260             <artifactId>model-flow-management</artifactId>
261             <version>1.0-SNAPSHOT</version>
262             <scope>provided</scope>
263         </dependency>
264         <dependency>
265             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
266             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
267             <version>4.0</version>
268         </dependency>
269     </dependencies>
270 </project>