e96dd9c6a0ceae15030b259172ff9b81d05d1461
[lispflowmapping.git] / mappingservice / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.controller</groupId>
8                 <artifactId>commons.integrationtest</artifactId>
9                 <version>0.5.1-SNAPSHOT</version>
10                 <relativePath></relativePath>
11         </parent>
12         <groupId>org.opendaylight.lispflowmapping</groupId>
13         <artifactId>mappingservice.integrationtest</artifactId>
14
15         <repositories>
16                 <!-- OpenDayLight Released artifact -->
17                 <repository>
18                         <id>opendaylight-release</id>
19                         <name>opendaylight-release</name>
20                         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
21                 </repository>
22                 <!-- OpenDayLight Snapshot artifact -->
23                 <repository>
24                         <id>opendaylight-snapshot</id>
25                         <name>opendaylight-snapshot</name>
26                         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
27                 </repository>
28         </repositories>
29         <build>
30
31                 <pluginManagement>
32                         <plugins>
33                                 <plugin>
34                                         <groupId>org.jacoco</groupId>
35                                         <artifactId>jacoco-maven-plugin</artifactId>
36                                         <version>0.5.3.201107060350</version>
37                                 </plugin>
38                         </plugins>
39                 </pluginManagement>
40                 <plugins>
41                         <plugin>
42                                 <groupId>org.apache.maven.plugins</groupId>
43                                 <artifactId>maven-checkstyle-plugin</artifactId>
44                                 <version>${checkstyle.version}</version>
45                                 <dependencies>
46                                         <dependency>
47                                                 <groupId>org.opendaylight.controller</groupId>
48                                                 <artifactId>checkstyle</artifactId>
49                                                 <version>0.0.2-SNAPSHOT</version>
50                                         </dependency>
51                                 </dependencies>
52                                 <configuration>
53                                         <skip>true</skip>
54                                 </configuration>
55                         </plugin>
56                         <plugin>
57                                 <groupId>org.apache.maven.plugins</groupId>
58                                 <artifactId>maven-surefire-plugin</artifactId>
59                                 <version>${surefire.version}</version>
60                                 <configuration>
61                                         <skipTests>false</skipTests>
62                                         <argLine>-Dlispip=127.0.0.1</argLine>
63                                         <skip>${skipIntegrationTest}</skip>
64                                 </configuration>
65                         </plugin>
66                         <plugin>
67                                 <groupId>org.jacoco</groupId>
68                                 <artifactId>jacoco-maven-plugin</artifactId>
69                                 <configuration>
70                                         <destFile>../implementation/target/jacoco-it.exec</destFile>
71                                         <includes>org.opendaylight.controller.*</includes>
72                                         <includes>org.opendaylight.lispflowmapping.*</includes>
73                                 </configuration>
74                                 <executions>
75                                         <execution>
76                                                 <id>pre-test</id>
77                                                 <goals>
78                                                         <goal>prepare-agent</goal>
79                                                 </goals>
80                                         </execution>
81                                         <execution>
82                                                 <id>post-test</id>
83                                                 <configuration>
84                                                         <skip>true</skip>
85                                                 </configuration>
86                                         </execution>
87                                 </executions>
88                         </plugin>
89
90                 </plugins>
91         </build>
92         <properties>
93                 <exam.version>3.0.0</exam.version>
94                 <url.version>1.5.2</url.version>
95                 <!-- Sonar jacoco plugin to get integration test coverage info -->
96                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
97                 <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
98                 <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
99                 <sonar.language>java</sonar.language>
100                 <!-- Dependency Versions -->
101                 <slf4j.version>1.7.2</slf4j.version>
102                 <osgi.core.version>5.0.0</osgi.core.version>
103                 <junit.version>4.8.1</junit.version>
104                 <xtend.version>2.4.3</xtend.version>
105         </properties>
106         <dependencies>
107
108                 <dependency>
109                         <groupId>org.opendaylight.controller</groupId>
110                         <artifactId>sal-binding-api</artifactId>
111                         <version>1.0-SNAPSHOT</version>
112                 </dependency>
113                 <dependency>
114                         <groupId>org.opendaylight.controller</groupId>
115                         <artifactId>sal-common-api</artifactId>
116                         <version>1.0-SNAPSHOT</version>
117                 </dependency>
118
119                 <dependency>
120                         <groupId>org.opendaylight.controller</groupId>
121                         <artifactId>sal-common-util</artifactId>
122                         <version>1.0-SNAPSHOT</version>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.opendaylight.controller</groupId>
126                         <artifactId>commons.integrationtest</artifactId>
127                         <type>pom</type>
128                         <version>0.5.1-SNAPSHOT</version>
129                 </dependency>
130                 <dependency>
131                         <groupId>org.opendaylight.lispflowmapping</groupId>
132                         <artifactId>mappingservice.api</artifactId>
133                         <version>0.1.0-SNAPSHOT</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.opendaylight.lispflowmapping</groupId>
137                         <artifactId>mappingservice.implementation</artifactId>
138                         <version>0.1.0-SNAPSHOT</version>
139                 </dependency>
140                 <dependency>
141                         <groupId>org.opendaylight.lispflowmapping</groupId>
142                         <artifactId>mappingservice.southbound</artifactId>
143                         <version>0.1.0-SNAPSHOT</version>
144                 </dependency>
145                 <dependency>
146                         <groupId>org.opendaylight.lispflowmapping</groupId>
147                         <artifactId>mappingservice.northbound</artifactId>
148                         <version>0.1.0-SNAPSHOT</version>
149                 </dependency>
150                 <dependency>
151                         <groupId>org.opendaylight.controller</groupId>
152                         <artifactId>containermanager</artifactId>
153                         <version>0.5.1-SNAPSHOT</version>
154                 </dependency>
155
156                 <dependency>
157                         <groupId>org.opendaylight.controller</groupId>
158                         <artifactId>containermanager.it.implementation</artifactId>
159                         <version>0.5.1-SNAPSHOT</version>
160                 </dependency>
161                 <dependency>
162                         <groupId>org.opendaylight.controller</groupId>
163                         <artifactId>protocol_plugins.stub</artifactId>
164                         <version>0.4.1-SNAPSHOT</version>
165                 </dependency>
166
167                 <dependency>
168                         <groupId>org.opendaylight.controller</groupId>
169                         <artifactId>sal</artifactId>
170                         <version>0.5.1-SNAPSHOT</version>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.opendaylight.controller</groupId>
174                         <artifactId>clustering.services</artifactId>
175                         <version>0.4.1-SNAPSHOT</version>
176                 </dependency>
177                 <dependency>
178                         <groupId>org.opendaylight.controller</groupId>
179                         <artifactId>clustering.stub</artifactId>
180                         <version>0.4.1-SNAPSHOT</version>
181                 </dependency>
182
183                 <dependency>
184                         <groupId>org.codehaus.enunciate</groupId>
185                         <artifactId>enunciate-core-annotations</artifactId>
186                         <version>${enunciate.version}</version>
187                 </dependency>
188                 <dependency>
189                         <groupId>org.slf4j</groupId>
190                         <artifactId>jcl-over-slf4j</artifactId>
191                         <version>${slf4j.version}</version>
192                 </dependency>
193                 <dependency>
194                         <groupId>org.slf4j</groupId>
195                         <artifactId>slf4j-api</artifactId>
196                         <version>${slf4j.version}</version>
197                 </dependency>
198                 <dependency>
199                         <groupId>org.slf4j</groupId>
200                         <artifactId>log4j-over-slf4j</artifactId>
201                         <version>${slf4j.version}</version>
202                 </dependency>
203                 <dependency>
204                         <groupId>ch.qos.logback</groupId>
205                         <artifactId>logback-core</artifactId>
206                         <version>${logback.version}</version>
207                 </dependency>
208                 <dependency>
209                         <groupId>ch.qos.logback</groupId>
210                         <artifactId>logback-classic</artifactId>
211                         <version>${logback.version}</version>
212                 </dependency>
213                 <dependency>
214                         <groupId>commons-io</groupId>
215                         <artifactId>commons-io</artifactId>
216                 </dependency>
217                 <dependency>
218                         <groupId>commons-fileupload</groupId>
219                         <artifactId>commons-fileupload</artifactId>
220                         <version>1.2.2</version>
221                 </dependency>
222                 <dependency>
223                         <groupId>commons-codec</groupId>
224                         <artifactId>commons-codec</artifactId>
225                         <version>1.8</version>
226                 </dependency>
227                 <dependency>
228                         <groupId>equinoxSDK381</groupId>
229                         <artifactId>javax.servlet</artifactId>
230                         <version>3.0.0.v201112011016</version>
231                 </dependency>
232                 <dependency>
233                         <groupId>equinoxSDK381</groupId>
234                         <artifactId>javax.servlet.jsp</artifactId>
235                         <version>2.2.0.v201112011158</version>
236                 </dependency>
237                 <dependency>
238                         <groupId>equinoxSDK381</groupId>
239                         <artifactId>org.eclipse.equinox.ds</artifactId>
240                         <version>1.4.0.v20120522-1841</version>
241                 </dependency>
242                 <dependency>
243                         <groupId>equinoxSDK381</groupId>
244                         <artifactId>org.eclipse.equinox.util</artifactId>
245                         <version>1.0.400.v20120522-2049</version>
246                 </dependency>
247                 <dependency>
248                         <groupId>equinoxSDK381</groupId>
249                         <artifactId>org.eclipse.osgi</artifactId>
250                         <version>3.8.1.v20120830-144521</version>
251                 </dependency>
252                 <dependency>
253                         <groupId>equinoxSDK381</groupId>
254                         <artifactId>org.apache.felix.gogo.command</artifactId>
255                         <version>0.8.0.v201108120515</version>
256                 </dependency>
257                 <dependency>
258                         <groupId>equinoxSDK381</groupId>
259                         <artifactId>org.apache.felix.gogo.runtime</artifactId>
260                         <version>0.8.0.v201108120515</version>
261                 </dependency>
262                 <dependency>
263                         <groupId>equinoxSDK381</groupId>
264                         <artifactId>org.apache.felix.gogo.shell</artifactId>
265                         <version>0.8.0.v201110170705</version>
266                 </dependency>
267                 <dependency>
268                         <groupId>equinoxSDK381</groupId>
269                         <artifactId>org.eclipse.equinox.cm</artifactId>
270                         <version>1.0.400.v20120522-1841</version>
271                 </dependency>
272                 <dependency>
273                         <groupId>equinoxSDK381</groupId>
274                         <artifactId>org.eclipse.equinox.console</artifactId>
275                         <version>1.0.0.v20120522-1841</version>
276                 </dependency>
277                 <dependency>
278                         <groupId>equinoxSDK381</groupId>
279                         <artifactId>org.eclipse.equinox.launcher</artifactId>
280                         <version>1.3.0.v20120522-1813</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>org.apache.felix</groupId>
284                         <artifactId>org.apache.felix.dependencymanager</artifactId>
285                         <version>3.1.0</version>
286                 </dependency>
287                 <dependency>
288                         <groupId>org.apache.felix</groupId>
289                         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
290                         <version>3.0.1</version>
291                 </dependency>
292                 <dependency>
293                         <groupId>com.google.code.gson</groupId>
294                         <artifactId>gson</artifactId>
295                         <version>2.1</version>
296                         <scope>compile</scope>
297                 </dependency>
298                 <dependency>
299                         <groupId>org.jboss.spec.javax.transaction</groupId>
300                         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
301                         <version>1.0.1.Final</version>
302                 </dependency>
303                 <dependency>
304                         <groupId>org.apache.felix</groupId>
305                         <artifactId>org.apache.felix.fileinstall</artifactId>
306                         <version>3.1.6</version>
307                 </dependency>
308                 <dependency>
309                         <groupId>org.apache.commons</groupId>
310                         <artifactId>commons-lang3</artifactId>
311                         <version>${commons.lang.version}</version>
312                 </dependency>
313                 <dependency>
314                         <groupId>virgomirror</groupId>
315                         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
316                         <version>3.8.0.I20120518-2145</version>
317                 </dependency>
318                 <dependency>
319                         <groupId>eclipselink</groupId>
320                         <artifactId>javax.persistence</artifactId>
321                         <version>2.0.4.v201112161009</version>
322                 </dependency>
323                 <dependency>
324                         <groupId>eclipselink</groupId>
325                         <artifactId>javax.resource</artifactId>
326                         <version>1.5.0.v200906010428</version>
327                 </dependency>
328                 <dependency>
329                         <groupId>orbit</groupId>
330                         <artifactId>javax.activation</artifactId>
331                         <version>1.1.0.v201211130549</version>
332                 </dependency>
333                 <dependency>
334                         <groupId>orbit</groupId>
335                         <artifactId>javax.annotation</artifactId>
336                         <version>1.1.0.v201209060031</version>
337                 </dependency>
338                 <dependency>
339                         <groupId>orbit</groupId>
340                         <artifactId>javax.ejb</artifactId>
341                         <version>3.1.1.v201204261316</version>
342                 </dependency>
343                 <dependency>
344                         <groupId>orbit</groupId>
345                         <artifactId>javax.el</artifactId>
346                         <version>2.2.0.v201108011116</version>
347                 </dependency>
348                 <dependency>
349                         <groupId>orbit</groupId>
350                         <artifactId>javax.mail.glassfish</artifactId>
351                         <version>1.4.1.v201108011116</version>
352                 </dependency>
353                 <dependency>
354                         <groupId>orbit</groupId>
355                         <artifactId>javax.xml.rpc</artifactId>
356                         <version>1.1.0.v201005080400</version>
357                 </dependency>
358                 <dependency>
359                         <groupId>orbit</groupId>
360                         <artifactId>org.apache.catalina</artifactId>
361                         <version>7.0.32.v201211201336</version>
362                 </dependency>
363                 <dependency>
364                         <groupId>orbit</groupId>
365                         <artifactId>org.apache.catalina.ha</artifactId>
366                         <version>7.0.32.v201211201952</version>
367                 </dependency>
368                 <dependency>
369                         <groupId>orbit</groupId>
370                         <artifactId>org.apache.catalina.tribes</artifactId>
371                         <version>7.0.32.v201211201952</version>
372                 </dependency>
373                 <dependency>
374                         <groupId>orbit</groupId>
375                         <artifactId>org.apache.coyote</artifactId>
376                         <version>7.0.32.v201211201952</version>
377                 </dependency>
378                 <dependency>
379                         <groupId>orbit</groupId>
380                         <artifactId>org.apache.el</artifactId>
381                         <version>7.0.32.v201211081135</version>
382                 </dependency>
383                 <dependency>
384                         <groupId>orbit</groupId>
385                         <artifactId>org.apache.jasper</artifactId>
386                         <version>7.0.32.v201211201952</version>
387                 </dependency>
388                 <dependency>
389                         <groupId>orbit</groupId>
390                         <artifactId>org.apache.juli.extras</artifactId>
391                         <version>7.0.32.v201211081135</version>
392                 </dependency>
393                 <dependency>
394                         <groupId>orbit</groupId>
395                         <artifactId>org.apache.tomcat.api</artifactId>
396                         <version>7.0.32.v201211081135</version>
397                 </dependency>
398                 <dependency>
399                         <groupId>orbit</groupId>
400                         <artifactId>org.apache.tomcat.util</artifactId>
401                         <version>7.0.32.v201211201952</version>
402                 </dependency>
403                 <dependency>
404                         <groupId>orbit</groupId>
405                         <artifactId>javax.servlet.jsp.jstl</artifactId>
406                         <version>1.2.0.v201105211821</version>
407                 </dependency>
408                 <dependency>
409                         <groupId>orbit</groupId>
410                         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
411                         <version>1.2.0.v201210211230</version>
412                 </dependency>
413                 <!-- Add Pax Exam -->
414                 <dependency>
415                         <groupId>org.ops4j.pax.exam</groupId>
416                         <artifactId>pax-exam-container-native</artifactId>
417                         <version>${exam.version}</version>
418                         <scope>test</scope>
419                 </dependency>
420                 <dependency>
421                         <groupId>org.ops4j.pax.exam</groupId>
422                         <artifactId>pax-exam-junit4</artifactId>
423                         <version>${exam.version}</version>
424                         <scope>test</scope>
425                 </dependency>
426                 <dependency>
427                         <groupId>org.ops4j.pax.exam</groupId>
428                         <artifactId>pax-exam-link-mvn</artifactId>
429                         <version>${exam.version}</version>
430                         <scope>test</scope>
431                 </dependency>
432                 <dependency>
433                         <groupId>org.ops4j.pax.url</groupId>
434                         <artifactId>pax-url-aether</artifactId>
435                         <version>${url.version}</version>
436                         <scope>test</scope>
437                 </dependency>
438                 <dependency>
439                         <groupId>org.ow2.asm</groupId>
440                         <artifactId>asm-all</artifactId>
441                         <version>4.1</version>
442                 </dependency>
443                 <dependency>
444                         <groupId>org.springframework</groupId>
445                         <artifactId>org.springframework.asm</artifactId>
446                         <version>${spring.version}</version>
447                 </dependency>
448                 <dependency>
449                         <groupId>org.springframework</groupId>
450                         <artifactId>org.springframework.aop</artifactId>
451                         <version>${spring.version}</version>
452                 </dependency>
453                 <dependency>
454                         <groupId>org.springframework</groupId>
455                         <artifactId>org.springframework.context</artifactId>
456                         <version>${spring.version}</version>
457                 </dependency>
458                 <dependency>
459                         <groupId>org.springframework</groupId>
460                         <artifactId>org.springframework.context.support</artifactId>
461                         <version>${spring.version}</version>
462                 </dependency>
463                 <dependency>
464                         <groupId>org.springframework</groupId>
465                         <artifactId>org.springframework.core</artifactId>
466                         <version>${spring.version}</version>
467                 </dependency>
468                 <dependency>
469                         <groupId>org.springframework</groupId>
470                         <artifactId>org.springframework.beans</artifactId>
471                         <version>${spring.version}</version>
472                 </dependency>
473                 <dependency>
474                         <groupId>org.springframework</groupId>
475                         <artifactId>org.springframework.expression</artifactId>
476                         <version>${spring.version}</version>
477                 </dependency>
478                 <dependency>
479                         <groupId>org.springframework</groupId>
480                         <artifactId>org.springframework.web</artifactId>
481                         <version>${spring.version}</version>
482                 </dependency>
483                 <dependency>
484                         <groupId>org.aopalliance</groupId>
485                         <artifactId>com.springsource.org.aopalliance</artifactId>
486                         <version>1.0.0</version>
487                 </dependency>
488                 <dependency>
489                         <groupId>org.springframework</groupId>
490                         <artifactId>org.springframework.web.servlet</artifactId>
491                         <version>${spring.version}</version>
492                 </dependency>
493                 <!-- Spring security -->
494                 <dependency>
495                         <groupId>org.springframework.security</groupId>
496                         <artifactId>spring-security-config</artifactId>
497                         <version>${spring-security.version}</version>
498                 </dependency>
499                 <dependency>
500                         <groupId>org.springframework.security</groupId>
501                         <artifactId>spring-security-core</artifactId>
502                         <version>${spring-security.version}</version>
503                 </dependency>
504                 <dependency>
505                         <groupId>org.springframework.security</groupId>
506                         <artifactId>spring-security-web</artifactId>
507                         <version>${spring-security.version}</version>
508                 </dependency>
509                 <dependency>
510                         <groupId>org.springframework.security</groupId>
511                         <artifactId>spring-security-taglibs</artifactId>
512                         <version>${spring-security.version}</version>
513                 </dependency>
514                 <dependency>
515                         <groupId>org.springframework</groupId>
516                         <artifactId>org.springframework.transaction</artifactId>
517                         <version>${spring-security.version}</version>
518                 </dependency>
519                 <!-- Visual VM hook -->
520                 <dependency>
521                         <groupId>org.ow2.chameleon.management</groupId>
522                         <artifactId>chameleon-mbeans</artifactId>
523                         <version>1.0.0</version>
524                 </dependency>
525                 <!-- Jersey for JAXRS -->
526                 <dependency>
527                         <groupId>com.sun.jersey</groupId>
528                         <artifactId>jersey-core</artifactId>
529                         <version>${jersey.version}</version>
530                 </dependency>
531                 <dependency>
532                         <groupId>com.sun.jersey</groupId>
533                         <artifactId>jersey-server</artifactId>
534                         <version>${jersey.version}</version>
535                 </dependency>
536                 <dependency>
537                         <groupId>com.sun.jersey</groupId>
538                         <artifactId>jersey-client</artifactId>
539                         <version>${jersey.version}</version>
540                 </dependency>
541                 <dependency>
542                         <groupId>com.sun.jersey</groupId>
543                         <artifactId>jersey-json</artifactId>
544                         <version>${jersey.version}</version>
545                 </dependency>
546                 <dependency>
547                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
548                         <artifactId>xtend-lib-osgi</artifactId>
549                         <version>2.4.3</version>
550                 </dependency>
551                 <dependency>
552                         <groupId>org.opendaylight.controller</groupId>
553                         <artifactId>sal-binding-broker-impl</artifactId>
554                         <version>1.0-SNAPSHOT</version>
555                 </dependency>
556                 <dependency>
557                         <groupId>org.javassist</groupId>
558                         <artifactId>javassist</artifactId>
559                         <version>3.17.1-GA</version>
560                 </dependency>
561                 <dependency>
562                         <groupId>org.opendaylight.controller</groupId>
563                         <artifactId>config-manager</artifactId>
564                         <version>0.2.2-SNAPSHOT</version>
565                 </dependency>
566                 <dependency>
567                         <groupId>org.opendaylight.controller.thirdparty</groupId>
568                         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
569                 </dependency>
570                 <dependency>
571                         <groupId>org.codehaus.jackson</groupId>
572                         <artifactId>jackson-mapper-asl</artifactId>
573                         <version>${jackson.version}</version>
574                 </dependency>
575                 <dependency>
576                         <groupId>org.codehaus.jackson</groupId>
577                         <artifactId>jackson-core-asl</artifactId>
578                         <version>${jackson.version}</version>
579                 </dependency>
580                 <dependency>
581                         <groupId>org.codehaus.jackson</groupId>
582                         <artifactId>jackson-jaxrs</artifactId>
583                         <version>${jackson.version}</version>
584                 </dependency>
585                 <dependency>
586                         <groupId>org.codehaus.jackson</groupId>
587                         <artifactId>jackson-xc</artifactId>
588                         <version>${jackson.version}</version>
589                 </dependency>
590                 <dependency>
591                         <groupId>org.codehaus.jettison</groupId>
592                         <artifactId>jettison</artifactId>
593                         <version>1.3.3</version>
594                 </dependency>
595                 <dependency>
596                         <groupId>org.opendaylight.controller</groupId>
597                         <artifactId>commons.northbound</artifactId>
598                         <version>0.4.1-SNAPSHOT</version>
599                 </dependency>
600                 <dependency>
601                         <groupId>org.opendaylight.controller</groupId>
602                         <artifactId>bundlescanner</artifactId>
603                         <version>0.4.1-SNAPSHOT</version>
604                 </dependency>
605
606                 <dependency>
607                         <groupId>org.opendaylight.controller</groupId>
608                         <artifactId>bundlescanner.implementation</artifactId>
609                         <version>0.4.1-SNAPSHOT</version>
610                 </dependency>
611                 <dependency>
612                         <groupId>org.opendaylight.controller</groupId>
613                         <artifactId>switchmanager</artifactId>
614                         <version>0.6.1-SNAPSHOT</version>
615                 </dependency>
616                 <dependency>
617                         <groupId>org.opendaylight.controller</groupId>
618                         <artifactId>switchmanager.implementation</artifactId>
619                         <version>0.4.1-SNAPSHOT</version>
620                 </dependency>
621                 <dependency>
622                         <groupId>org.opendaylight.controller</groupId>
623                         <artifactId>commons.httpclient</artifactId>
624                         <version>0.1.1-SNAPSHOT</version>
625                 </dependency>
626                 <dependency>
627                         <groupId>org.opendaylight.controller</groupId>
628                         <artifactId>connectionmanager</artifactId>
629                         <version>0.1.1-SNAPSHOT</version>
630                 </dependency>
631                 <dependency>
632                         <groupId>org.opendaylight.controller</groupId>
633                         <artifactId>connectionmanager.implementation</artifactId>
634                         <version>0.1.1-SNAPSHOT</version>
635                 </dependency>
636                 <dependency>
637                         <groupId>org.opendaylight.controller</groupId>
638                         <artifactId>configuration</artifactId>
639                         <version>0.4.1-SNAPSHOT</version>
640                 </dependency>
641                 <dependency>
642                         <groupId>org.opendaylight.controller</groupId>
643                         <artifactId>configuration.implementation</artifactId>
644                         <version>0.4.1-SNAPSHOT</version>
645                 </dependency>
646                 <dependency>
647                         <groupId>org.opendaylight.controller</groupId>
648                         <artifactId>usermanager</artifactId>
649                         <version>0.4.1-SNAPSHOT</version>
650                 </dependency>
651                 <dependency>
652                         <groupId>org.opendaylight.controller</groupId>
653                         <artifactId>usermanager.implementation</artifactId>
654                         <version>0.4.1-SNAPSHOT</version>
655                 </dependency>
656                 <dependency>
657                         <groupId>org.opendaylight.controller</groupId>
658                         <artifactId>sal.connection</artifactId>
659                         <version>0.1.1-SNAPSHOT</version>
660                 </dependency>
661                 <dependency>
662                         <groupId>org.opendaylight.controller</groupId>
663                         <artifactId>sal.connection.implementation</artifactId>
664                         <version>0.1.1-SNAPSHOT</version>
665                 </dependency>
666                 <dependency>
667                         <groupId>org.opendaylight.controller.thirdparty</groupId>
668                         <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
669                 </dependency>
670                 <dependency>
671                         <groupId>org.opendaylight.controller.thirdparty</groupId>
672                         <artifactId>net.sf.jung2</artifactId>
673                 </dependency>
674                 <dependency>
675                         <groupId>org.opendaylight.controller</groupId>
676                         <artifactId>logging.bridge</artifactId>
677                         <version>0.4.1-SNAPSHOT</version>
678                 </dependency>
679                 <!-- Gemini Web -->
680                 <dependency>
681                         <groupId>geminiweb</groupId>
682                         <artifactId>org.eclipse.gemini.web.core</artifactId>
683                         <version>${geminiweb.version}</version>
684                 </dependency>
685                 <dependency>
686                         <groupId>geminiweb</groupId>
687                         <artifactId>org.eclipse.gemini.web.extender</artifactId>
688                         <version>${geminiweb.version}</version>
689                 </dependency>
690                 <dependency>
691                         <groupId>geminiweb</groupId>
692                         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
693                         <version>${geminiweb.version}</version>
694                 </dependency>
695                 <dependency>
696                         <groupId>geminiweb</groupId>
697                         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
698                         <version>${virgo.version}</version>
699                 </dependency>
700                 <dependency>
701                         <groupId>geminiweb</groupId>
702                         <artifactId>org.eclipse.virgo.util.common</artifactId>
703                         <version>${virgo.version}</version>
704                 </dependency>
705                 <dependency>
706                         <groupId>geminiweb</groupId>
707                         <artifactId>org.eclipse.virgo.util.io</artifactId>
708                         <version>${virgo.version}</version>
709                 </dependency>
710                 <dependency>
711                         <groupId>geminiweb</groupId>
712                         <artifactId>org.eclipse.virgo.util.math</artifactId>
713                         <version>${virgo.version}</version>
714                 </dependency>
715                 <dependency>
716                         <groupId>geminiweb</groupId>
717                         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
718                         <version>${virgo.version}</version>
719                 </dependency>
720                 <dependency>
721                         <groupId>geminiweb</groupId>
722                         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
723                         <version>${virgo.version}</version>
724                 </dependency>
725                 <dependency>
726                         <groupId>geminiweb</groupId>
727                         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
728                         <version>${virgo.version}</version>
729                 </dependency>
730                 <dependency>
731                         <groupId>org.opendaylight.controller</groupId>
732                         <artifactId>security</artifactId>
733                         <version>0.4.1-SNAPSHOT</version>
734                 </dependency>
735                 <dependency>
736                         <groupId>org.opendaylight.controller</groupId>
737                         <artifactId>sal-connector-api</artifactId>
738                         <version>1.0-SNAPSHOT</version>
739                 </dependency>
740                 <dependency>
741                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
742                         <artifactId>antlr4-runtime-osgi-nohead</artifactId>
743                         <version>4.0</version>
744                 </dependency>
745
746         </dependencies>
747
748         <profiles>
749                 <profile>
750                         <id>default</id>
751                         <activation>
752                                 <activeByDefault>true</activeByDefault>
753                         </activation>
754                         <properties>
755                                 <skipIntegrationTest>false</skipIntegrationTest>
756                         </properties>
757                 </profile>
758                 <profile>
759                         <id>skipTestCompileAndRun</id>
760                         <activation>
761                                 <property>
762                                         <name>maven.test.skip</name>
763                                         <value>true</value>
764                                 </property>
765                         </activation>
766                         <properties>
767                                 <skipIntegrationTest>true</skipIntegrationTest>
768                         </properties>
769                 </profile>
770                 <profile>
771                         <id>skipTestRun</id>
772                         <activation>
773                                 <property>
774                                         <name>skipTests</name>
775                                 </property>
776                         </activation>
777                         <properties>
778                                 <skipIntegrationTest>true</skipIntegrationTest>
779                         </properties>
780                 </profile>
781         </profiles>
782 </project>