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