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