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