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