b24470da2c2ca1f49e2e60ed55a7b466a251d8e9
[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
69     <dependency>
70       <groupId>org.opendaylight.yangtools.thirdparty</groupId>
71       <artifactId>antlr4-runtime-osgi-nohead</artifactId>
72     </dependency>
73
74     <!--Compile scopes for all testing dependencies are intentional-->
75     <!--This way, all testing dependencies can be transitively used by other integration test modules-->
76     <!--If the dependencies are test scoped, they are not visible to other maven modules depending on sal-binding-it-->
77
78     <!--TODO Create generic utilities(extract from this module) for integration tests on the controller-->
79     <dependency>
80       <groupId>openexi</groupId>
81       <artifactId>nagasena</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>openexi</groupId>
85       <artifactId>nagasena-rta</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.ops4j.pax.exam</groupId>
89       <artifactId>pax-exam</artifactId>
90       <version>${exam.version}</version>
91       <!-- Compile scope here is intentional, it is used in TestHelper
92                 class which could be downloaded via nexus and reused in other integration
93                 tests. -->
94       <scope>compile</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.ops4j.pax.exam</groupId>
98       <artifactId>pax-exam-container-native</artifactId>
99       <scope>compile</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.ops4j.pax.exam</groupId>
103       <artifactId>pax-exam-junit4</artifactId>
104       <scope>compile</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.ops4j.pax.exam</groupId>
108       <artifactId>pax-exam-link-mvn</artifactId>
109       <scope>compile</scope>
110     </dependency>
111     <dependency>
112       <groupId>commons-io</groupId>
113       <artifactId>commons-io</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.slf4j</groupId>
117       <artifactId>log4j-over-slf4j</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.slf4j</groupId>
121       <artifactId>slf4j-api</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.controller</groupId>
125       <artifactId>sal-test-model</artifactId>
126       <version>${mdsal.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.yangtools.model</groupId>
130       <artifactId>opendaylight-l2-types</artifactId>
131     </dependency>
132   </dependencies>
133
134   <build>
135     <pluginManagement>
136       <plugins>
137         <!--This plugin's configuration is used to store Eclipse
138                     m2e settings only. It has no influence on the Maven build itself. -->
139         <plugin>
140           <groupId>org.eclipse.m2e</groupId>
141           <artifactId>lifecycle-mapping</artifactId>
142           <version>${lifecycle.mapping.version}</version>
143           <configuration>
144             <lifecycleMappingMetadata>
145               <pluginExecutions>
146                 <pluginExecution>
147                   <pluginExecutionFilter>
148                     <groupId>org.ops4j.pax.exam</groupId>
149                     <artifactId>maven-paxexam-plugin</artifactId>
150                     <versionRange>[1.2.4,)</versionRange>
151                     <goals>
152                       <goal>generate-depends-file</goal>
153                     </goals>
154                   </pluginExecutionFilter>
155                   <action>
156                     <ignore></ignore>
157                   </action>
158                 </pluginExecution>
159               </pluginExecutions>
160             </lifecycleMappingMetadata>
161           </configuration>
162         </plugin>
163       </plugins>
164     </pluginManagement>
165     <plugins>
166       <plugin>
167         <groupId>org.ops4j.pax.exam</groupId>
168         <artifactId>maven-paxexam-plugin</artifactId>
169         <executions>
170           <execution>
171             <id>generate-config</id>
172             <goals>
173               <goal>generate-depends-file</goal>
174             </goals>
175           </execution>
176         </executions>
177       </plugin>
178       <plugin>
179         <groupId>org.apache.maven.plugins</groupId>
180         <artifactId>maven-failsafe-plugin</artifactId>
181         <executions>
182           <execution>
183               <goals>
184                   <goal>integration-test</goal>
185                   <goal>verify</goal>
186               </goals>
187           </execution>
188         </executions>
189         <!-- PAX EXAM tests sometimes takes longer to run if
190              not enough system resources are provided and
191              default timeout of two minutes may be not enough
192              on some jenkins jobs. In order to not loose
193              results of these tests, but to prevent this
194              tests of failing verifies sporadically
195              this test suites are optional and should not
196              fail build.
197          -->
198         <configuration>
199             <testFailureIgnore>true</testFailureIgnore>
200         </configuration>
201       </plugin>
202     </plugins>
203   </build>
204   <scm>
205     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
206     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
207     <tag>HEAD</tag>
208     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
209   </scm>
210 </project>