Remove antlr4-runtime-osgi-nohead
[controller.git] / opendaylight / md-sal / sal-binding-it / 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>sal-parent</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-it</artifactId>
10
11   <dependencies>
12     <dependency>
13       <groupId>ch.qos.logback</groupId>
14       <artifactId>logback-classic</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>ch.qos.logback</groupId>
18       <artifactId>logback-core</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>equinoxSDK381</groupId>
22       <artifactId>org.eclipse.osgi</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.eclipse.persistence</groupId>
26       <artifactId>org.eclipse.persistence.core</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.eclipse.persistence</groupId>
30       <artifactId>org.eclipse.persistence.moxy</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.mockito</groupId>
34       <artifactId>mockito-all</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>object-cache-guava</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>config-manager</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>config-manager-facade-xml</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>config-persister-file-xml-adapter</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>config-persister-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>logback-config</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-binding-broker-impl</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-binding-config</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-dom-broker-config</artifactId>
71     </dependency>
72     <dependency>
73       <!-- TODO Add this to odlparent -->
74       <groupId>org.antlr</groupId>
75       <artifactId>antlr4-runtime</artifactId>
76       <version>4.5.1-1</version>
77     </dependency>
78
79     <!--Compile scopes for all testing dependencies are intentional-->
80     <!--This way, all testing dependencies can be transitively used by other integration test modules-->
81     <!--If the dependencies are test scoped, they are not visible to other maven modules depending on sal-binding-it-->
82
83     <!--TODO Create generic utilities(extract from this module) for integration tests on the controller-->
84     <dependency>
85       <groupId>openexi</groupId>
86       <artifactId>nagasena</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>openexi</groupId>
90       <artifactId>nagasena-rta</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.ops4j.pax.exam</groupId>
94       <artifactId>pax-exam</artifactId>
95       <!-- Compile scope here is intentional, it is used in TestHelper
96                 class which could be downloaded via nexus and reused in other integration
97                 tests. -->
98       <scope>compile</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.ops4j.pax.exam</groupId>
102       <artifactId>pax-exam-container-native</artifactId>
103       <scope>compile</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.ops4j.pax.exam</groupId>
107       <artifactId>pax-exam-junit4</artifactId>
108       <scope>compile</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.ops4j.pax.exam</groupId>
112       <artifactId>pax-exam-link-mvn</artifactId>
113       <scope>compile</scope>
114     </dependency>
115     <dependency>
116       <groupId>commons-io</groupId>
117       <artifactId>commons-io</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.slf4j</groupId>
121       <artifactId>log4j-over-slf4j</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.slf4j</groupId>
125       <artifactId>slf4j-api</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.controller</groupId>
129       <artifactId>sal-test-model</artifactId>
130       <version>${mdsal.version}</version>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.mdsal.model</groupId>
134       <artifactId>ietf-yang-types</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.mdsal.model</groupId>
138       <artifactId>ietf-inet-types</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.mdsal.model</groupId>
142       <artifactId>opendaylight-l2-types</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>javax.inject</groupId>
146       <artifactId>javax.inject</artifactId>
147       <version>1</version>
148     </dependency>
149   </dependencies>
150
151   <build>
152     <pluginManagement>
153       <plugins>
154         <!--This plugin's configuration is used to store Eclipse
155                     m2e settings only. It has no influence on the Maven build itself. -->
156         <plugin>
157           <groupId>org.eclipse.m2e</groupId>
158           <artifactId>lifecycle-mapping</artifactId>
159           <version>${lifecycle.mapping.version}</version>
160           <configuration>
161             <lifecycleMappingMetadata>
162               <pluginExecutions>
163                 <pluginExecution>
164                   <pluginExecutionFilter>
165                     <groupId>org.ops4j.pax.exam</groupId>
166                     <artifactId>maven-paxexam-plugin</artifactId>
167                     <versionRange>[1.2.4,)</versionRange>
168                     <goals>
169                       <goal>generate-depends-file</goal>
170                     </goals>
171                   </pluginExecutionFilter>
172                   <action>
173                     <ignore></ignore>
174                   </action>
175                 </pluginExecution>
176               </pluginExecutions>
177             </lifecycleMappingMetadata>
178           </configuration>
179         </plugin>
180       </plugins>
181     </pluginManagement>
182     <plugins>
183       <plugin>
184         <groupId>org.ops4j.pax.exam</groupId>
185         <artifactId>maven-paxexam-plugin</artifactId>
186         <executions>
187           <execution>
188             <id>generate-config</id>
189             <goals>
190               <goal>generate-depends-file</goal>
191             </goals>
192           </execution>
193         </executions>
194       </plugin>
195       <plugin>
196         <groupId>org.apache.maven.plugins</groupId>
197         <artifactId>maven-failsafe-plugin</artifactId>
198         <executions>
199           <execution>
200               <goals>
201                   <goal>integration-test</goal>
202                   <goal>verify</goal>
203               </goals>
204           </execution>
205         </executions>
206         <!-- PAX EXAM tests sometimes takes longer to run if
207              not enough system resources are provided and
208              default timeout of two minutes may be not enough
209              on some jenkins jobs. In order to not loose
210              results of these tests, but to prevent this
211              tests of failing verifies sporadically
212              this test suites are optional and should not
213              fail build.
214          -->
215         <configuration>
216             <testFailureIgnore>true</testFailureIgnore>
217         </configuration>
218       </plugin>
219     </plugins>
220   </build>
221   <scm>
222     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
223     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
224     <tag>HEAD</tag>
225     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
226   </scm>
227 </project>