BUG-1065: translation of Ipv6ExtHeader flags to int
[openflowplugin.git] / openflowplugin-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         <groupId>org.opendaylight.openflowplugin</groupId>
5         <artifactId>openflowplugin-parent</artifactId>
6         <version>0.0.3-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9
10     <artifactId>openflowplugin-it</artifactId>
11
12     <properties>
13         <exam.version>3.0.0</exam.version>
14     </properties>
15
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.ops4j.pax.exam</groupId>
20                 <artifactId>maven-paxexam-plugin</artifactId>
21                 <executions>
22                     <execution>
23                         <id>generate-config</id>
24                         <goals>
25                             <goal>generate-depends-file</goal>
26                         </goals>
27                     </execution>
28                 </executions>
29             </plugin>
30         </plugins>
31         <pluginManagement>
32             <plugins>
33                 <!--This plugin's configuration is used to store Eclipse m2e settings
34                     only. It has no influence on the Maven build itself. -->
35                 <plugin>
36                     <groupId>org.eclipse.m2e</groupId>
37                     <artifactId>lifecycle-mapping</artifactId>
38                     <version>1.0.0</version>
39                     <configuration>
40                         <lifecycleMappingMetadata>
41                             <pluginExecutions>
42                                 <pluginExecution>
43                                     <pluginExecutionFilter>
44                                         <groupId>
45                                             org.ops4j.pax.exam
46                                         </groupId>
47                                         <artifactId>
48                                             maven-paxexam-plugin
49                                         </artifactId>
50                                         <versionRange>
51                                             [1.2.4,)
52                                         </versionRange>
53                                         <goals>
54                                             <goal>
55                                                 generate-depends-file
56                                             </goal>
57                                         </goals>
58                                     </pluginExecutionFilter>
59                                     <action>
60                                         <ignore />
61                                     </action>
62                                 </pluginExecution>
63                             </pluginExecutions>
64                         </lifecycleMappingMetadata>
65                     </configuration>
66                 </plugin>
67             </plugins>
68         </pluginManagement>
69     </build>
70
71     <dependencies>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>sal-binding-it</artifactId>
75             <scope>test</scope>
76             <exclusions>
77                 <exclusion>
78                     <groupId>org.ops4j.pax.exam</groupId>
79                     <artifactId>pax-exam-container-native</artifactId>
80                 </exclusion>
81             </exclusions>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-binding-broker-impl</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.openflowplugin</groupId>
90             <artifactId>openflowplugin</artifactId>
91             <version>${project.version}</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.openflowjava</groupId>
96             <artifactId>openflow-protocol-impl</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.openflowjava</groupId>
101             <artifactId>simple-client</artifactId>
102             <scope>test</scope>
103         </dependency>
104
105         <dependency>
106             <groupId>org.javassist</groupId>
107             <artifactId>javassist</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
112             <artifactId>xtend-lib-osgi</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.ops4j.pax.exam</groupId>
117             <artifactId>pax-exam-container-forked</artifactId>
118             <version>${exam.version}</version>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.ops4j.pax.exam</groupId>
123             <artifactId>pax-exam-junit4</artifactId>
124             <version>${exam.version}</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.ops4j.pax.exam</groupId>
129             <artifactId>pax-exam-link-mvn</artifactId>
130             <version>${exam.version}</version>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.ops4j.pax.exam</groupId>
135             <artifactId>pax-exam</artifactId>
136             <version>${exam.version}</version>
137         </dependency>
138         <dependency>
139             <groupId>equinoxSDK381</groupId>
140             <artifactId>org.eclipse.osgi</artifactId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144           <groupId>equinoxSDK381</groupId>
145           <artifactId>org.eclipse.equinox.console</artifactId>
146           <scope>test</scope>
147         </dependency>
148         <dependency>
149           <groupId>equinoxSDK381</groupId>
150           <artifactId>org.apache.felix.gogo.command</artifactId>
151           <scope>test</scope>
152         </dependency>
153         <dependency>
154           <groupId>equinoxSDK381</groupId>
155           <artifactId>org.apache.felix.gogo.runtime</artifactId>
156           <scope>test</scope>
157         </dependency>
158         <dependency>
159           <groupId>equinoxSDK381</groupId>
160           <artifactId>org.apache.felix.gogo.shell</artifactId>
161           <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
165             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
166             <scope>test</scope>
167         </dependency>
168         <dependency>
169           <groupId>org.opendaylight.controller</groupId>
170           <artifactId>logback-config</artifactId>
171           <scope>test</scope>
172         </dependency>
173         <dependency>
174           <groupId>org.opendaylight.controller</groupId>
175           <artifactId>config-persister-api</artifactId>
176           <scope>test</scope>
177         </dependency>
178         <dependency>
179           <groupId>org.opendaylight.controller</groupId>
180           <artifactId>config-persister-impl</artifactId>
181           <scope>test</scope>
182         </dependency>
183         <dependency>
184           <groupId>org.opendaylight.controller</groupId>
185           <artifactId>netconf-monitoring</artifactId>
186           <scope>test</scope>
187         </dependency>
188         <dependency>
189           <groupId>org.opendaylight.controller</groupId>
190           <artifactId>netconf-client</artifactId>
191           <scope>test</scope>
192         </dependency>
193         <dependency>
194           <groupId>org.opendaylight.controller</groupId>
195           <artifactId>netconf-impl</artifactId>
196           <scope>test</scope>
197         </dependency>
198         <dependency>
199           <groupId>org.opendaylight.controller</groupId>
200           <artifactId>config-persister-file-xml-adapter</artifactId>
201           <scope>test</scope>
202         </dependency>
203         
204         <dependency>
205           <groupId>org.openexi</groupId>
206           <artifactId>nagasena</artifactId>
207           <scope>test</scope>
208         </dependency>
209         <dependency>
210           <groupId>org.openexi</groupId>
211           <artifactId>nagasena-rta</artifactId>
212           <scope>test</scope>
213         </dependency>
214         <dependency>
215           <groupId>org.opendaylight.controller.thirdparty</groupId>
216           <artifactId>ganymed</artifactId>
217           <scope>test</scope>
218         </dependency>
219             
220         <dependency>
221             <groupId>org.slf4j</groupId>
222             <artifactId>log4j-over-slf4j</artifactId>
223             <scope>test</scope>
224         </dependency>
225
226         <dependency>
227             <groupId>ch.qos.logback</groupId>
228             <artifactId>logback-core</artifactId>
229             <scope>test</scope>
230         </dependency>
231         <dependency>
232             <groupId>ch.qos.logback</groupId>
233             <artifactId>logback-classic</artifactId>
234             <scope>test</scope>
235         </dependency>
236         <dependency>
237             <groupId>org.opendaylight.controller</groupId>
238             <artifactId>config-netconf-connector</artifactId>
239             <scope>test</scope>
240         </dependency>
241         <dependency>
242             <groupId>org.opendaylight.controller</groupId>
243             <artifactId>config-manager</artifactId>
244             <scope>test</scope>
245         </dependency>
246         
247         <dependency>
248             <groupId>commons-codec</groupId>
249             <artifactId>commons-codec</artifactId>
250         </dependency>
251     </dependencies>
252 </project>