Initial code drop of yang model driven configuration system
[controller.git] / opendaylight / commons / opendaylight / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7   <groupId>org.opendaylight.controller</groupId>
8   <artifactId>commons.opendaylight</artifactId>
9   <version>1.4.1-SNAPSHOT</version>
10   <packaging>pom</packaging>
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>commons.parent</artifactId>
14     <version>1.0.1-SNAPSHOT</version>
15     <relativePath>../parent</relativePath>
16   </parent>
17   <scm>
18     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
19     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
20     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
21     <tag>HEAD</tag>
22   </scm>
23
24   <properties>
25     <propertymavenplugin.version>1.0-alpha-2</propertymavenplugin.version>
26     <sonar.host.url>https://sonar.opendaylight.org/</sonar.host.url>
27     <sitedeploy>dav:http://nexus.opendaylight.org/content/sites/site</sitedeploy>
28     <siteplugin>3.2</siteplugin>
29     <projectinfo>2.6</projectinfo>
30     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
32     <compiler.version>2.3.2</compiler.version>
33     <surefire.version>2.15</surefire.version>
34     <failsafe.version>2.15</failsafe.version>
35     <exam.version>3.0.0</exam.version>
36     <url.version>1.5.0</url.version>
37     <enunciate.version>1.26.2</enunciate.version>
38     <sonar.branch>${user.name}-private-view</sonar.branch>
39     <sonar.skippedModules>org.openflow.openflowj,net.sf.jung2</sonar.skippedModules>
40     <logback.version>1.0.9</logback.version>
41     <slf4j.version>1.7.2</slf4j.version>
42     <jackson.version>1.9.8</jackson.version>
43     <spring.version>3.1.3.RELEASE</spring.version>
44     <spring-security.version>3.1.3.RELEASE</spring-security.version>
45     <jersey.version>1.17</jersey.version>
46     <virgo.version>3.6.0.RELEASE</virgo.version>
47     <geminiweb.version>2.2.0.RELEASE</geminiweb.version>
48     <checkstyle.version>2.10</checkstyle.version>
49     <testvm.argLine>-Xmx1024m -XX:MaxPermSize=256m</testvm.argLine>
50     <yang.version>0.5.8</yang.version>
51     <guava.version>14.0.1</guava.version>
52     <ietf-inet-types.version>2010.09.24.1</ietf-inet-types.version>
53     <ietf-yang-types.version>2010.09.24.1</ietf-yang-types.version>
54     <opendaylight-l2-types.version>2013.08.27.1</opendaylight-l2-types.version>
55     <yang-ext.version>2013.09.07.1</yang-ext.version>
56     <javassist.version>3.17.1-GA</javassist.version>
57     <sample-toaster.version>1.0-SNAPSHOT</sample-toaster.version>
58     <releaseplugin.version>2.3.2</releaseplugin.version>
59     <commons.lang.version>3.1</commons.lang.version>
60     <jacoco.version>0.5.3.201107060350</jacoco.version>
61     <enforcer.version>1.3.1</enforcer.version>
62     <bundle.plugin.version>2.3.7</bundle.plugin.version>
63     <junit.version>4.8.1</junit.version>
64     <bgpcep.version>0.2.0-SNAPSHOT</bgpcep.version>
65   </properties>
66
67  <dependencyManagement>
68      <dependencies>
69          <dependency>
70              <groupId>junit</groupId>
71               <artifactId>junit</artifactId>
72               <version>${junit.version}</version>
73               <scope>test</scope>
74          </dependency>
75      </dependencies>
76  </dependencyManagement>
77
78   <pluginRepositories>
79     <pluginRepository>
80       <id>central</id>
81       <name>maven repo1</name>
82       <url>http://repo1.maven.org/maven2</url>
83     </pluginRepository>
84   </pluginRepositories>
85
86   <profiles>
87     <profile>
88       <id>notduringrelease</id>
89       <activation>
90         <property>
91           <name>!DOINGRELEASE</name>
92         </property>
93       </activation>
94       <dependencies>
95         <!-- yangtools -->
96
97         <dependency>
98           <groupId>org.opendaylight.yangtools</groupId>
99           <artifactId>yang-binding</artifactId>
100           <version>${yang.version}</version>
101         </dependency>
102         <dependency>
103           <groupId>org.opendaylight.yangtools</groupId>
104           <artifactId>yang-common</artifactId>
105           <version>${yang.version}</version>
106         </dependency>
107         <dependency>
108           <groupId>org.opendaylight.yangtools</groupId>
109           <artifactId>yang-data-api</artifactId>
110           <version>${yang.version}</version>
111         </dependency>
112         <dependency>
113           <groupId>org.opendaylight.yangtools</groupId>
114           <artifactId>yang-model-api</artifactId>
115           <version>${yang.version}</version>
116         </dependency>
117         <dependency>
118           <groupId>org.opendaylight.yangtools</groupId>
119           <artifactId>yang-data-util</artifactId>
120           <version>${yang.version}</version>
121         </dependency>
122
123         <!-- Models -->
124
125         <dependency>
126           <groupId>org.opendaylight.yangtools.model</groupId>
127           <artifactId>ietf-inet-types</artifactId>
128           <version>${ietf-inet-types.version}</version>
129         </dependency>
130         <dependency>
131           <groupId>org.opendaylight.yangtools.model</groupId>
132           <artifactId>ietf-yang-types</artifactId>
133           <version>${ietf-yang-types.version}</version>
134         </dependency>
135         <dependency>
136           <groupId>org.opendaylight.yangtools.model</groupId>
137           <artifactId>ietf-yang-types</artifactId>
138           <version>${ietf-yang-types.version}</version>
139         </dependency>
140         <dependency>
141           <groupId>org.opendaylight.yangtools.model</groupId>
142           <artifactId>opendaylight-l2-types</artifactId>
143           <version>${opendaylight-l2-types.version}</version>
144         </dependency>
145         <dependency>
146           <groupId>org.opendaylight.yangtools.model</groupId>
147           <artifactId>yang-ext</artifactId>
148           <version>${yang-ext.version}</version>
149         </dependency>
150
151         <!-- Other MDSAL dependencies -->
152
153         <dependency>
154           <groupId>com.google.guava</groupId>
155           <artifactId>guava</artifactId>
156           <version>${guava.version}</version>
157         </dependency>
158         <dependency>
159           <groupId>org.javassist</groupId>
160           <artifactId>javassist</artifactId>
161           <version>${javassist.version}</version>
162         </dependency>
163         <dependency>
164           <groupId>org.opendaylight.bgpcep</groupId>
165           <artifactId>concepts</artifactId>
166           <version>${bgpcep.version}</version>
167         </dependency>
168         <dependency>
169           <groupId>org.opendaylight.bgpcep</groupId>
170           <artifactId>util</artifactId>
171           <version>${bgpcep.version}</version>
172         </dependency>
173       </dependencies>
174       <properties>
175         <build.suffix>${project.version}</build.suffix>
176       </properties>
177     </profile>
178     <profile>
179       <id>viewbuild</id>
180       <activation>
181         <activeByDefault>true</activeByDefault>
182       </activation>
183       <properties>
184         <build.suffix>${project.version}</build.suffix>
185       </properties>
186     </profile>
187     <profile>
188       <id>jenkins</id>
189       <activation>
190         <property>
191           <name>BUILDSUFFIX</name>
192         </property>
193       </activation>
194       <properties>
195         <build.suffix>${BUILDSUFFIX}</build.suffix>
196       </properties>
197     </profile>
198     <profile>
199       <id>fastreassembly</id>
200       <build>
201         <plugins>
202           <plugin>
203             <groupId>org.apache.maven.plugins</groupId>
204             <artifactId>maven-dependency-plugin</artifactId>
205             <version>2.4</version>
206             <executions>
207               <execution>
208                 <id>copyfastreassembly</id>
209                 <phase>install</phase>
210                 <goals>
211                   <goal>copy</goal>
212                 </goals>
213                 <configuration>
214                   <artifactItems>
215                     <artifactItem>
216                       <groupId>${project.groupId}</groupId>
217                       <artifactId>${project.artifactId}</artifactId>
218                       <version>${project.version}</version>
219                       <destFileName>${project.groupId}.${project.artifactId}-${project.version}.jar</destFileName>
220                     </artifactItem>
221                   </artifactItems>
222                   <outputDirectory>${fastreassembly.directory}</outputDirectory>
223                 </configuration>
224               </execution>
225             </executions>
226           </plugin>
227         </plugins>
228       </build>
229     </profile>
230   </profiles>
231
232   <repositories>
233     <!-- EBR release -->
234     <!-- http://repository.springsource.com/maven/bundles/release -->
235     <repository>
236       <id>ebr-bundles-release</id>
237       <name>ebr-bundles-release</name>
238       <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
239     </repository>
240     <!-- EBR external -->
241     <!-- http://repository.springsource.com/maven/bundles/external -->
242     <repository>
243       <id>ebr-bundles-external</id>
244       <name>ebr-bundles-external</name>
245       <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
246     </repository>
247     <repository>
248       <id>central</id>
249       <name>central</name>
250       <url>http://repo1.maven.org/maven2</url>
251       <snapshots>
252         <enabled>false</enabled>
253       </snapshots>
254       <releases>
255           <enabled>true</enabled>
256       </releases>
257     </repository>
258     <!-- Pax mirror -->
259     <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
260     <repository>
261       <id>ops4j-releases</id>
262       <name>ops4j-releases</name>
263       <url>${nexusproxy}/repositories/ops4j-releases/</url>
264     </repository>
265     <!-- Third Packages hosted in local maven because not available in
266          other places -->
267     <repository>
268       <id>thirdparty</id>
269       <name>thirdparty</name>
270       <url>${nexusproxy}/repositories/thirdparty/</url>
271     </repository>
272     <!-- Jboss mirror -->
273     <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
274     <repository>
275       <id>jboss.releases</id>
276       <name>jboss.releases</name>
277       <url>${nexusproxy}/repositories/jboss.releases/</url>
278       <snapshots>
279         <enabled>false</enabled>
280       </snapshots>
281       <releases>
282         <enabled>true</enabled>
283       </releases>
284     </repository>
285     <!-- OpenDayLight Released artifact -->
286     <repository>
287       <id>opendaylight-release</id>
288       <name>opendaylight-release</name>
289       <url>${nexusproxy}/repositories/opendaylight.release/</url>
290     </repository>
291     <!-- OpenDayLight Snapshot artifact -->
292     <repository>
293       <id>opendaylight-snapshot</id>
294       <name>opendaylight-snapshot</name>
295       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
296     </repository>
297   </repositories>
298   <distributionManagement>
299     <!-- OpenDayLight Released artifact -->
300     <repository>
301       <id>opendaylight-release</id>
302       <url>${nexusproxy}/repositories/opendaylight.release/</url>
303     </repository>
304     <!-- OpenDayLight Snapshot artifact -->
305     <snapshotRepository>
306       <id>opendaylight-snapshot</id>
307       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
308     </snapshotRepository>
309     <!-- Site deployment -->
310     <site>
311       <id>website</id>
312       <url>${sitedeploy}</url>
313     </site>
314   </distributionManagement>
315
316   <reporting>
317     <excludeDefaults>true</excludeDefaults>
318     <outputDirectory>${project.build.directory}/site</outputDirectory>
319     <plugins>
320       <plugin>
321         <groupId>org.apache.maven.plugins</groupId>
322         <artifactId>maven-project-info-reports-plugin</artifactId>
323         <version>${projectinfo}</version>
324         <configuration>
325           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
326           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
327         </configuration>
328         <reportSets>
329           <reportSet>
330             <reports>
331               <report>index</report>
332               <report>project-team</report>
333               <report>license</report>
334               <report>mailing-list</report>
335               <report>plugin-management</report>
336               <report>cim</report>
337               <report>issue-tracking</report>
338               <report>scm</report>
339               <report>summary</report>
340             </reports>
341           </reportSet>
342         </reportSets>
343       </plugin>
344       <plugin>
345         <groupId>org.apache.maven.plugins</groupId>
346         <artifactId>maven-jxr-plugin</artifactId>
347         <version>2.3</version>
348         <configuration>
349           <aggregate>true</aggregate>
350           <linkJavadoc>true</linkJavadoc>
351         </configuration>
352       </plugin>
353       <plugin>
354         <groupId>org.apache.maven.plugins</groupId>
355         <artifactId>maven-checkstyle-plugin</artifactId>
356         <version>${checkstyle.version}</version>
357       </plugin>
358       <plugin>
359         <groupId>org.apache.maven.plugins</groupId>
360         <artifactId>maven-javadoc-plugin</artifactId>
361         <version>2.8.1</version>
362         <configuration>
363           <doclet>org.jboss.apiviz.APIviz</doclet>
364           <docletArtifact>
365             <groupId>org.jboss.apiviz</groupId>
366             <artifactId>apiviz</artifactId>
367             <version>1.3.2.GA</version>
368           </docletArtifact>
369           <finalName>${project.artifactId}-${build.suffix}</finalName>
370           <useStandardDocletOptions>true</useStandardDocletOptions>
371           <charset>UTF-8</charset>
372           <encoding>UTF-8</encoding>
373           <docencoding>UTF-8</docencoding>
374           <breakiterator>true</breakiterator>
375           <version>true</version>
376           <author>true</author>
377           <keywords>true</keywords>
378           <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
379         </configuration>
380       </plugin>
381     </plugins>
382   </reporting>
383
384   <build>
385     <plugins>
386       <plugin>
387         <groupId>org.codehaus.mojo</groupId>
388         <artifactId>properties-maven-plugin</artifactId>
389         <version>${propertymavenplugin.version}</version>
390         <executions>
391           <execution>
392             <goals>
393               <goal>set-system-properties</goal>
394             </goals>
395             <configuration>
396               <properties>
397                 <property>
398                   <name>logback.configurationFile</name>
399                   <value>${project.parent.basedir}/logback.xml</value>
400                 </property>
401               </properties>
402             </configuration>
403           </execution>
404         </executions>
405       </plugin>
406       <plugin>
407         <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
408         <artifactId>maven-java-formatter-plugin</artifactId>
409         <version>0.3.1</version>
410         <configuration>
411           <compilerSource>1.6</compilerSource>
412           <compilerCompliance>1.6</compilerCompliance>
413           <compilerTargetPlatform>1.6</compilerTargetPlatform>
414           <configFile>${project.parent.basedir}/sun_coding_style.xml</configFile>
415         </configuration>
416       </plugin>
417       <plugin>
418         <groupId>org.apache.maven.plugins</groupId>
419         <artifactId>maven-checkstyle-plugin</artifactId>
420         <version>${checkstyle.version}</version>
421           <dependencies>
422             <dependency>
423               <groupId>org.opendaylight.controller</groupId>
424               <artifactId>checkstyle</artifactId>
425               <version>0.0.2-SNAPSHOT</version>
426             </dependency>
427           </dependencies>
428         <executions>
429           <execution>
430             <phase>process-sources</phase>
431             <goals>
432               <goal>check</goal>
433             </goals>
434           </execution>
435         </executions>
436         <configuration>
437           <failsOnError>true</failsOnError>
438           <configLocation>controller/space_and_tabs_checks.xml</configLocation>
439           <consoleOutput>true</consoleOutput>
440           <includeTestSourceDirectory>true</includeTestSourceDirectory>
441           <sourceDirectory>${project.basedir}</sourceDirectory>
442           <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat</includes>
443           <excludes>target\/</excludes>
444         </configuration>
445       </plugin>
446       <plugin>
447         <groupId>org.apache.maven.plugins</groupId>
448         <artifactId>maven-failsafe-plugin</artifactId>
449         <version>${failsafe.version}</version>
450         <configuration>
451           <argLine>${testvm.argLine}</argLine>
452         </configuration>
453         <executions>
454           <execution>
455             <id>failsafe-integration-tests</id>
456             <phase>integration-test</phase>
457             <goals>
458               <goal>integration-test</goal>
459             </goals>
460           </execution>
461           <execution>
462             <id>failsafe-verify</id>
463             <phase>verify</phase>
464             <goals>
465               <goal>verify</goal>
466             </goals>
467           </execution>
468         </executions>
469       </plugin>
470       <plugin>
471         <groupId>org.apache.maven.plugins</groupId>
472         <artifactId>maven-surefire-plugin</artifactId>
473         <version>${surefire.version}</version>
474       </plugin>
475     </plugins>
476     <pluginManagement>
477       <plugins>
478         <plugin>
479           <groupId>org.apache.maven.plugins</groupId>
480           <artifactId>maven-release-plugin</artifactId>
481           <version>${releaseplugin.version}</version>
482         </plugin>
483         <!-- Ignore/Execute plugin execution -->
484         <plugin>
485           <groupId>org.eclipse.m2e</groupId>
486           <artifactId>lifecycle-mapping</artifactId>
487           <version>1.0.0</version>
488           <configuration>
489             <lifecycleMappingMetadata>
490               <pluginExecutions>
491                 <pluginExecution>
492                   <pluginExecutionFilter>
493                     <groupId>org.codehaus.mojo</groupId>
494                     <artifactId>properties-maven-plugin</artifactId>
495                     <versionRange>[0.0,)</versionRange>
496                     <goals>
497                       <goal>set-system-properties</goal>
498                     </goals>
499                   </pluginExecutionFilter>
500                   <action>
501                     <ignore />
502                   </action>
503                 </pluginExecution>
504                 <pluginExecution>
505                   <pluginExecutionFilter>
506                     <groupId>org.codehaus.enunciate</groupId>
507                     <artifactId>maven-enunciate-plugin</artifactId>
508                     <versionRange>[0.0,)</versionRange>
509                     <goals>
510                       <goal>docs</goal>
511                     </goals>
512                   </pluginExecutionFilter>
513                   <action>
514                     <ignore />
515                   </action>
516                 </pluginExecution>
517                 <pluginExecution>
518                   <pluginExecutionFilter>
519                     <groupId>org.jacoco</groupId>
520                     <artifactId>jacoco-maven-plugin</artifactId>
521                     <versionRange>[0.0,)</versionRange>
522                     <goals>
523                       <goal>prepare-agent</goal>
524                       <goal>pre-test</goal>
525                       <goal>post-test</goal>
526                     </goals>
527                   </pluginExecutionFilter>
528                   <action>
529                     <ignore />
530                   </action>
531                 </pluginExecution>
532                 <pluginExecution>
533                   <pluginExecutionFilter>
534                     <groupId>org.ops4j.pax.exam</groupId>
535                     <artifactId>maven-paxexam-plugin</artifactId>
536                     <versionRange>[1.2.4,)</versionRange>
537                     <goals>
538                       <goal>generate-depends-file</goal>
539                     </goals>
540                   </pluginExecutionFilter>
541                   <action>
542                     <ignore />
543                   </action>
544                 </pluginExecution>
545                 <pluginExecution>
546                   <pluginExecutionFilter>
547                     <groupId>org.apache.maven.plugins</groupId>
548                     <artifactId>maven-checkstyle-plugin</artifactId>
549                     <versionRange>[2.0,)</versionRange>
550                     <goals>
551                       <goal>check</goal>
552                     </goals>
553                   </pluginExecutionFilter>
554                   <action>
555                     <ignore />
556                   </action>
557                 </pluginExecution>
558               </pluginExecutions>
559             </lifecycleMappingMetadata>
560           </configuration>
561         </plugin>
562         <plugin>
563           <groupId>org.codehaus.enunciate</groupId>
564           <artifactId>maven-enunciate-plugin</artifactId>
565           <version>${enunciate.version}</version>
566           <configuration>
567             <configFile>enunciate.xml</configFile>
568           </configuration>
569           <executions>
570             <execution>
571               <goals>
572                 <goal>docs</goal>
573               </goals>
574             </execution>
575           </executions>
576         </plugin>
577         <plugin>
578           <groupId>org.apache.maven.plugins</groupId>
579           <artifactId>maven-compiler-plugin</artifactId>
580           <version>${compiler.version}</version>
581           <configuration>
582             <source>1.6</source>
583             <target>1.6</target>
584           </configuration>
585         </plugin>
586         <plugin>
587           <groupId>org.apache.maven.plugins</groupId>
588           <artifactId>maven-javadoc-plugin</artifactId>
589           <version>2.8.1</version>
590           <configuration>
591             <doclet>org.jboss.apiviz.APIviz</doclet>
592             <docletArtifact>
593               <groupId>org.jboss.apiviz</groupId>
594               <artifactId>apiviz</artifactId>
595               <version>1.3.2.GA</version>
596             </docletArtifact>
597             <finalName>${project.artifactId}-${build.suffix}</finalName>
598             <useStandardDocletOptions>true</useStandardDocletOptions>
599             <charset>UTF-8</charset>
600             <encoding>UTF-8</encoding>
601             <docencoding>UTF-8</docencoding>
602             <breakiterator>true</breakiterator>
603             <version>true</version>
604             <author>true</author>
605             <keywords>true</keywords>
606             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
607             <failOnError>false</failOnError>
608           </configuration>
609         </plugin>
610         <plugin>
611           <groupId>org.apache.maven.plugins</groupId>
612           <artifactId>maven-jxr-plugin</artifactId>
613           <version>2.3</version>
614           <configuration>
615             <aggregate>true</aggregate>
616             <linkJavadoc>true</linkJavadoc>
617             <javadocDir>target/apidocs</javadocDir>
618           </configuration>
619         </plugin>
620       </plugins>
621     </pluginManagement>
622   </build>
623
624   <dependencies>
625     <dependency>
626       <groupId>org.slf4j</groupId>
627       <artifactId>jcl-over-slf4j</artifactId>
628       <version>${slf4j.version}</version>
629     </dependency>
630     <dependency>
631       <groupId>org.slf4j</groupId>
632       <artifactId>slf4j-api</artifactId>
633       <version>${slf4j.version}</version>
634     </dependency>
635     <dependency>
636       <groupId>org.slf4j</groupId>
637       <artifactId>log4j-over-slf4j</artifactId>
638       <version>${slf4j.version}</version>
639     </dependency>
640     <dependency>
641       <groupId>ch.qos.logback</groupId>
642       <artifactId>logback-core</artifactId>
643       <version>${logback.version}</version>
644     </dependency>
645     <dependency>
646       <groupId>ch.qos.logback</groupId>
647       <artifactId>logback-classic</artifactId>
648       <version>${logback.version}</version>
649     </dependency>
650     <dependency>
651       <groupId>org.codehaus.jackson</groupId>
652       <artifactId>jackson-mapper-asl</artifactId>
653       <version>${jackson.version}</version>
654     </dependency>
655     <dependency>
656       <groupId>org.codehaus.jackson</groupId>
657       <artifactId>jackson-core-asl</artifactId>
658       <version>${jackson.version}</version>
659     </dependency>
660     <dependency>
661       <groupId>org.codehaus.jackson</groupId>
662       <artifactId>jackson-jaxrs</artifactId>
663       <version>${jackson.version}</version>
664     </dependency>
665     <dependency>
666       <groupId>org.codehaus.jackson</groupId>
667       <artifactId>jackson-xc</artifactId>
668       <version>${jackson.version}</version>
669     </dependency>
670     <dependency>
671       <groupId>org.codehaus.jettison</groupId>
672       <artifactId>jettison</artifactId>
673       <version>1.3.3</version>
674     </dependency>
675     <dependency>
676       <groupId>commons-io</groupId>
677       <artifactId>commons-io</artifactId>
678       <version>2.4</version>
679     </dependency>
680     <dependency>
681       <groupId>commons-codec</groupId>
682       <artifactId>commons-codec</artifactId>
683       <version>1.7</version>
684     </dependency>
685     <dependency>
686       <groupId>org.apache.commons</groupId>
687       <artifactId>commons-lang3</artifactId>
688       <version>${commons.lang.version}</version>
689     </dependency>
690     <dependency>
691       <groupId>commons-fileupload</groupId>
692       <artifactId>commons-fileupload</artifactId>
693       <version>1.2.2</version>
694     </dependency>
695     <dependency>
696         <groupId>commons-net</groupId>
697         <artifactId>commons-net</artifactId>
698         <version>3.0.1</version>
699     </dependency>
700     <dependency>
701       <groupId>equinoxSDK381</groupId>
702       <artifactId>javax.servlet</artifactId>
703       <version>3.0.0.v201112011016</version>
704     </dependency>
705     <dependency>
706       <groupId>equinoxSDK381</groupId>
707       <artifactId>javax.servlet.jsp</artifactId>
708       <version>2.2.0.v201112011158</version>
709     </dependency>
710     <dependency>
711       <groupId>equinoxSDK381</groupId>
712       <artifactId>org.eclipse.equinox.ds</artifactId>
713       <version>1.4.0.v20120522-1841</version>
714     </dependency>
715     <dependency>
716       <groupId>equinoxSDK381</groupId>
717       <artifactId>org.eclipse.equinox.util</artifactId>
718       <version>1.0.400.v20120522-2049</version>
719     </dependency>
720     <dependency>
721       <groupId>equinoxSDK381</groupId>
722       <artifactId>org.eclipse.osgi.services</artifactId>
723       <version>3.3.100.v20120522-1822</version>
724     </dependency>
725     <dependency>
726       <groupId>equinoxSDK381</groupId>
727       <artifactId>org.eclipse.osgi</artifactId>
728       <version>3.8.1.v20120830-144521</version>
729     </dependency>
730     <dependency>
731       <groupId>equinoxSDK381</groupId>
732       <artifactId>org.apache.felix.gogo.command</artifactId>
733       <version>0.8.0.v201108120515</version>
734     </dependency>
735     <dependency>
736       <groupId>equinoxSDK381</groupId>
737       <artifactId>org.apache.felix.gogo.runtime</artifactId>
738       <version>0.8.0.v201108120515</version>
739     </dependency>
740     <dependency>
741       <groupId>equinoxSDK381</groupId>
742       <artifactId>org.apache.felix.gogo.shell</artifactId>
743       <version>0.8.0.v201110170705</version>
744     </dependency>
745     <dependency>
746       <groupId>equinoxSDK381</groupId>
747       <artifactId>org.eclipse.equinox.cm</artifactId>
748       <version>1.0.400.v20120522-1841</version>
749     </dependency>
750     <dependency>
751       <groupId>equinoxSDK381</groupId>
752       <artifactId>org.eclipse.equinox.console</artifactId>
753       <version>1.0.0.v20120522-1841</version>
754     </dependency>
755     <dependency>
756       <groupId>equinoxSDK381</groupId>
757       <artifactId>org.eclipse.equinox.launcher</artifactId>
758       <version>1.3.0.v20120522-1813</version>
759     </dependency>
760     <!-- Gemini Web -->
761     <dependency>
762       <groupId>geminiweb</groupId>
763       <artifactId>org.eclipse.gemini.web.core</artifactId>
764       <version>${geminiweb.version}</version>
765     </dependency>
766     <dependency>
767       <groupId>geminiweb</groupId>
768       <artifactId>org.eclipse.gemini.web.extender</artifactId>
769       <version>${geminiweb.version}</version>
770     </dependency>
771     <dependency>
772       <groupId>geminiweb</groupId>
773       <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
774       <version>${geminiweb.version}</version>
775     </dependency>
776     <dependency>
777       <groupId>geminiweb</groupId>
778       <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
779       <version>${virgo.version}</version>
780     </dependency>
781     <dependency>
782       <groupId>geminiweb</groupId>
783       <artifactId>org.eclipse.virgo.util.common</artifactId>
784       <version>${virgo.version}</version>
785     </dependency>
786     <dependency>
787       <groupId>geminiweb</groupId>
788       <artifactId>org.eclipse.virgo.util.io</artifactId>
789       <version>${virgo.version}</version>
790     </dependency>
791     <dependency>
792       <groupId>geminiweb</groupId>
793       <artifactId>org.eclipse.virgo.util.math</artifactId>
794       <version>${virgo.version}</version>
795     </dependency>
796     <dependency>
797       <groupId>geminiweb</groupId>
798       <artifactId>org.eclipse.virgo.util.osgi</artifactId>
799       <version>${virgo.version}</version>
800     </dependency>
801     <dependency>
802       <groupId>geminiweb</groupId>
803       <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
804       <version>${virgo.version}</version>
805     </dependency>
806     <dependency>
807       <groupId>geminiweb</groupId>
808       <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
809       <version>${virgo.version}</version>
810     </dependency>
811     <dependency>
812       <groupId>org.apache.felix</groupId>
813       <artifactId>org.apache.felix.dependencymanager</artifactId>
814       <version>3.1.0</version>
815     </dependency>
816     <dependency>
817       <groupId>org.apache.felix</groupId>
818       <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
819       <version>3.0.1</version>
820     </dependency>
821     <dependency>
822       <groupId>com.google.code.gson</groupId>
823       <artifactId>gson</artifactId>
824       <version>2.1</version>
825       <scope>compile</scope>
826     </dependency>
827     <dependency>
828       <groupId>org.jboss.spec.javax.transaction</groupId>
829       <artifactId>jboss-transaction-api_1.1_spec</artifactId>
830       <version>1.0.1.Final</version>
831     </dependency>
832     <dependency>
833       <groupId>org.apache.felix</groupId>
834       <artifactId>org.apache.felix.fileinstall</artifactId>
835       <version>3.1.6</version>
836     </dependency>
837     <dependency>
838       <groupId>org.apache.commons</groupId>
839       <artifactId>commons-lang3</artifactId>
840       <version>${commons.lang.version}</version>
841     </dependency>
842     <dependency>
843       <groupId>virgomirror</groupId>
844       <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
845       <version>3.8.0.I20120518-2145</version>
846     </dependency>
847     <dependency>
848       <groupId>eclipselink</groupId>
849       <artifactId>javax.persistence</artifactId>
850       <version>2.0.4.v201112161009</version>
851     </dependency>
852     <dependency>
853       <groupId>orbit</groupId>
854       <artifactId>javax.activation</artifactId>
855       <version>1.1.0.v201211130549</version>
856     </dependency>
857     <dependency>
858       <groupId>orbit</groupId>
859       <artifactId>javax.annotation</artifactId>
860       <version>1.1.0.v201209060031</version>
861     </dependency>
862     <dependency>
863       <groupId>orbit</groupId>
864       <artifactId>javax.ejb</artifactId>
865       <version>3.1.1.v201204261316</version>
866     </dependency>
867     <dependency>
868       <groupId>orbit</groupId>
869       <artifactId>javax.el</artifactId>
870       <version>2.2.0.v201108011116</version>
871     </dependency>
872     <dependency>
873       <groupId>orbit</groupId>
874       <artifactId>javax.mail.glassfish</artifactId>
875       <version>1.4.1.v201108011116</version>
876     </dependency>
877     <dependency>
878       <groupId>orbit</groupId>
879       <artifactId>javax.xml.rpc</artifactId>
880       <version>1.1.0.v201005080400</version>
881     </dependency>
882     <dependency>
883       <groupId>orbit</groupId>
884       <artifactId>org.apache.catalina</artifactId>
885       <version>7.0.32.v201211201336</version>
886     </dependency>
887     <dependency>
888       <groupId>orbit</groupId>
889       <artifactId>org.apache.catalina.ha</artifactId>
890       <version>7.0.32.v201211201952</version>
891     </dependency>
892     <dependency>
893       <groupId>orbit</groupId>
894       <artifactId>org.apache.catalina.tribes</artifactId>
895       <version>7.0.32.v201211201952</version>
896     </dependency>
897     <dependency>
898       <groupId>orbit</groupId>
899       <artifactId>org.apache.coyote</artifactId>
900       <version>7.0.32.v201211201952</version>
901     </dependency>
902     <dependency>
903       <groupId>orbit</groupId>
904       <artifactId>org.apache.el</artifactId>
905       <version>7.0.32.v201211081135</version>
906     </dependency>
907     <dependency>
908       <groupId>orbit</groupId>
909       <artifactId>org.apache.jasper</artifactId>
910       <version>7.0.32.v201211201952</version>
911     </dependency>
912     <dependency>
913       <groupId>orbit</groupId>
914       <artifactId>org.apache.juli.extras</artifactId>
915       <version>7.0.32.v201211081135</version>
916     </dependency>
917     <dependency>
918       <groupId>orbit</groupId>
919       <artifactId>org.apache.tomcat.api</artifactId>
920       <version>7.0.32.v201211081135</version>
921     </dependency>
922     <dependency>
923       <groupId>orbit</groupId>
924       <artifactId>org.apache.tomcat.util</artifactId>
925       <version>7.0.32.v201211201952</version>
926     </dependency>
927     <dependency>
928       <groupId>orbit</groupId>
929       <artifactId>javax.servlet.jsp.jstl</artifactId>
930       <version>1.2.0.v201105211821</version>
931     </dependency>
932     <dependency>
933       <groupId>orbit</groupId>
934       <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
935       <version>1.2.0.v201210211230</version>
936     </dependency>
937     <dependency>
938       <groupId>eclipselink</groupId>
939       <artifactId>javax.resource</artifactId>
940       <version>1.5.0.v200906010428</version>
941     </dependency>
942     <!-- Add Pax Exam -->
943     <dependency>
944       <groupId>org.ops4j.pax.exam</groupId>
945       <artifactId>pax-exam-container-native</artifactId>
946       <version>${exam.version}</version>
947       <scope>test</scope>
948     </dependency>
949     <dependency>
950       <groupId>org.ops4j.pax.exam</groupId>
951       <artifactId>pax-exam-junit4</artifactId>
952       <version>${exam.version}</version>
953       <scope>test</scope>
954     </dependency>
955     <dependency>
956       <groupId>org.ops4j.pax.exam</groupId>
957       <artifactId>pax-exam-link-mvn</artifactId>
958       <version>${exam.version}</version>
959       <scope>test</scope>
960     </dependency>
961     <dependency>
962       <groupId>org.ops4j.pax.url</groupId>
963       <artifactId>pax-url-aether</artifactId>
964       <version>${url.version}</version>
965       <scope>test</scope>
966     </dependency>
967     <dependency>
968       <groupId>org.springframework</groupId>
969       <artifactId>org.springframework.asm</artifactId>
970       <version>${spring.version}</version>
971     </dependency>
972     <dependency>
973       <groupId>org.springframework</groupId>
974       <artifactId>org.springframework.aop</artifactId>
975       <version>${spring.version}</version>
976     </dependency>
977     <dependency>
978       <groupId>org.springframework</groupId>
979       <artifactId>org.springframework.context</artifactId>
980       <version>${spring.version}</version>
981     </dependency>
982     <dependency>
983       <groupId>org.springframework</groupId>
984       <artifactId>org.springframework.context.support</artifactId>
985       <version>${spring.version}</version>
986     </dependency>
987     <dependency>
988       <groupId>org.springframework</groupId>
989       <artifactId>org.springframework.core</artifactId>
990       <version>${spring.version}</version>
991     </dependency>
992     <dependency>
993       <groupId>org.springframework</groupId>
994       <artifactId>org.springframework.beans</artifactId>
995       <version>${spring.version}</version>
996     </dependency>
997     <dependency>
998       <groupId>org.springframework</groupId>
999       <artifactId>org.springframework.expression</artifactId>
1000       <version>${spring.version}</version>
1001     </dependency>
1002     <dependency>
1003       <groupId>org.springframework</groupId>
1004       <artifactId>org.springframework.web</artifactId>
1005       <version>${spring.version}</version>
1006     </dependency>
1007     <dependency>
1008       <groupId>org.aopalliance</groupId>
1009       <artifactId>com.springsource.org.aopalliance</artifactId>
1010       <version>1.0.0</version>
1011     </dependency>
1012     <dependency>
1013       <groupId>org.springframework</groupId>
1014       <artifactId>org.springframework.web.servlet</artifactId>
1015       <version>${spring.version}</version>
1016     </dependency>
1017     <!-- Spring security -->
1018     <dependency>
1019       <groupId>org.springframework.security</groupId>
1020       <artifactId>spring-security-config</artifactId>
1021       <version>${spring-security.version}</version>
1022     </dependency>
1023     <dependency>
1024       <groupId>org.springframework.security</groupId>
1025       <artifactId>spring-security-core</artifactId>
1026       <version>${spring-security.version}</version>
1027     </dependency>
1028     <dependency>
1029       <groupId>org.springframework.security</groupId>
1030       <artifactId>spring-security-web</artifactId>
1031       <version>${spring-security.version}</version>
1032     </dependency>
1033     <dependency>
1034       <groupId>org.springframework.security</groupId>
1035       <artifactId>spring-security-taglibs</artifactId>
1036       <version>${spring-security.version}</version>
1037     </dependency>
1038     <dependency>
1039       <groupId>org.springframework</groupId>
1040       <artifactId>org.springframework.transaction</artifactId>
1041       <version>${spring-security.version}</version>
1042     </dependency>
1043     <!-- Visual VM hook -->
1044     <dependency>
1045       <groupId>org.ow2.chameleon.management</groupId>
1046       <artifactId>chameleon-mbeans</artifactId>
1047       <version>1.0.0</version>
1048     </dependency>
1049     <!-- Jersey for JAXRS -->
1050     <dependency>
1051       <groupId>com.sun.jersey</groupId>
1052       <artifactId>jersey-core</artifactId>
1053       <version>${jersey.version}</version>
1054     </dependency>
1055     <dependency>
1056       <groupId>com.sun.jersey</groupId>
1057       <artifactId>jersey-server</artifactId>
1058       <version>${jersey.version}</version>
1059     </dependency>
1060     <dependency>
1061       <groupId>com.sun.jersey</groupId>
1062       <artifactId>jersey-client</artifactId>
1063       <version>${jersey.version}</version>
1064     </dependency>
1065     <dependency>
1066       <groupId>com.sun.jersey</groupId>
1067       <artifactId>jersey-json</artifactId>
1068       <version>${jersey.version}</version>
1069     </dependency>
1070     <dependency>
1071         <groupId>org.ow2.asm</groupId>
1072         <artifactId>asm-all</artifactId>
1073         <version>4.1</version>
1074     </dependency>
1075     <dependency>
1076         <groupId>org.eclipse.persistence</groupId>
1077         <artifactId>org.eclipse.persistence.moxy</artifactId>
1078         <version>2.5.0</version>
1079     </dependency>
1080     <dependency>
1081         <groupId>org.eclipse.persistence</groupId>
1082         <artifactId>org.eclipse.persistence.core</artifactId>
1083         <version>2.5.0</version>
1084     </dependency>
1085     <dependency>
1086         <groupId>org.eclipse.persistence</groupId>
1087         <artifactId>org.eclipse.persistence.antlr</artifactId>
1088         <version>2.5.0</version>
1089     </dependency>
1090     <!-- Third parties from opendaylight released -->
1091     <dependency>
1092       <groupId>org.opendaylight.controller.thirdparty</groupId>
1093       <artifactId>net.sf.jung2</artifactId>
1094       <version>2.0.1</version>
1095     </dependency>
1096     <dependency>
1097       <groupId>org.opendaylight.controller.thirdparty</groupId>
1098       <artifactId>org.openflow.openflowj</artifactId>
1099       <version>1.0.2</version>
1100     </dependency>
1101     <dependency>
1102       <groupId>org.opendaylight.controller.thirdparty</groupId>
1103       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
1104       <version>1.17</version>
1105     </dependency>
1106     <dependency>
1107       <groupId>org.opendaylight.controller.thirdparty</groupId>
1108       <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
1109       <version>7.0.42</version>
1110     </dependency>
1111   </dependencies>
1112 </project>