Fix warnings about overriden versions
[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
136         <dependency>
137             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
138             <artifactId>xtend-lib-osgi</artifactId>
139             <version>2.4.3</version>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.controller</groupId>
144             <artifactId>sal-binding-broker-impl</artifactId>
145             <scope>provided</scope>
146         </dependency>
147         <dependency>
148             <groupId>org.ops4j.pax.exam</groupId>
149             <artifactId>pax-exam-container-native</artifactId>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.ops4j.pax.exam</groupId>
154             <artifactId>pax-exam-junit4</artifactId>
155             <scope>test</scope>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.controller</groupId>
159             <artifactId>config-netconf-connector</artifactId>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>yang-store-impl</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>org.opendaylight.controller</groupId>
168             <artifactId>logback-config</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>config-persister-impl</artifactId>
173         </dependency>
174         <dependency>
175             <groupId>org.opendaylight.controller</groupId>
176             <artifactId>config-persister-file-xml-adapter</artifactId>
177         </dependency>
178         <dependency>
179             <groupId>org.eclipse.persistence</groupId>
180             <artifactId>org.eclipse.persistence.moxy</artifactId>
181         </dependency>
182         <dependency>
183             <groupId>org.eclipse.persistence</groupId>
184             <artifactId>org.eclipse.persistence.core</artifactId>
185         </dependency>
186         <dependency>
187             <groupId>org.opendaylight.controller</groupId>
188             <artifactId>netconf-impl</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.controller</groupId>
192             <artifactId>netconf-monitoring</artifactId>
193         </dependency>
194         <dependency>
195             <groupId>org.opendaylight.controller</groupId>
196             <artifactId>netconf-client</artifactId>
197         </dependency>
198         <dependency>
199             <groupId>org.ops4j.pax.exam</groupId>
200             <artifactId>pax-exam</artifactId>
201             <version>${exam.version}</version>
202             <!-- Compile scope here is intentional, it is used in TestHelper
203                 class which could be downloaded via nexus and reused in other integration
204                 tests. -->
205             <scope>compile</scope>
206         </dependency>
207         <dependency>
208             <groupId>org.ops4j.pax.exam</groupId>
209             <artifactId>pax-exam-link-mvn</artifactId>
210             <scope>test</scope>
211         </dependency>
212         <dependency>
213             <groupId>equinoxSDK381</groupId>
214             <artifactId>org.eclipse.osgi</artifactId>
215             <scope>test</scope>
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             <scope>test</scope>
233         </dependency>
234         <dependency>
235             <groupId>org.opendaylight.controller.model</groupId>
236             <artifactId>model-flow-service</artifactId>
237             <scope>provided</scope>
238         </dependency>
239         <dependency>
240             <groupId>org.opendaylight.controller</groupId>
241             <artifactId>config-manager</artifactId>
242         </dependency>
243         <dependency>
244             <groupId>org.opendaylight.controller.model</groupId>
245             <artifactId>model-flow-management</artifactId>
246             <scope>provided</scope>
247         </dependency>
248         <dependency>
249             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
250             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
251             <version>4.0</version>
252         </dependency>
253     </dependencies>
254 </project>