Add <scm> section to all pom.xml files
[lispflowmapping.git] / mappingservice / integrationtest / pom.xml
index 872227c50cf640b069e07914cdcfc7c15fa80278..6b8107bc7780a22d7b4627d36fdf991527e8a997 100644 (file)
@@ -7,10 +7,16 @@
                <groupId>org.opendaylight.controller</groupId>
                <artifactId>commons.integrationtest</artifactId>
                <version>0.5.1-SNAPSHOT</version>
-                <relativePath></relativePath>
+               <relativePath></relativePath>
        </parent>
        <groupId>org.opendaylight.lispflowmapping</groupId>
        <artifactId>mappingservice.integrationtest</artifactId>
+       <scm>
+               <connection>scm:git:https://git.opendaylight.org/gerrit/p/lispflowmapping.git</connection>
+               <developerConnection>scm:git:ssh://git.opendaylight.org:29418/lispflowmapping.git</developerConnection>
+               <url>https://wiki.opendaylight.org/view/OpenDaylight_Lisp_Flow_Mapping:Main</url>
+               <tag>HEAD</tag>
+       </scm>
 
        <repositories>
                <!-- OpenDayLight Released artifact -->
                </repository>
        </repositories>
        <build>
-
                <pluginManagement>
                        <plugins>
+                               
                                <plugin>
-                                       <groupId>org.jacoco</groupId>
-                                       <artifactId>jacoco-maven-plugin</artifactId>
-                                       <version>0.5.3.201107060350</version>
+                                       <groupId>org.eclipse.m2e</groupId>
+                                       <artifactId>lifecycle-mapping</artifactId>
+                                       <version>1.0.0</version>
+                                       <configuration>
+                                               <lifecycleMappingMetadata>
+                                                       <pluginExecutions>
+                                                               <pluginExecution>
+                                                                       <pluginExecutionFilter>
+                                                                               <groupId>org.ops4j.pax.exam</groupId>
+                                                                               <artifactId>maven-paxexam-plugin</artifactId>
+                                                                               <versionRange>[1.2.4,)</versionRange>
+                                                                               <goals>
+                                                                                       <goal>generate-depends-file</goal>
+                                                                               </goals>
+                                                                       </pluginExecutionFilter>
+                                                                       <action>
+                                                                               <execute>
+                                                                                       <runOnIncremental>false</runOnIncremental>
+                                                                               </execute>
+                                                                       </action>
+                                                               </pluginExecution>
+                                                       </pluginExecutions>
+                                               </lifecycleMappingMetadata>
+                                       </configuration>
                                </plugin>
                        </plugins>
                </pluginManagement>
                <plugins>
+                       <plugin>
+                               <groupId>org.ops4j.pax.exam</groupId>
+                               <artifactId>maven-paxexam-plugin</artifactId>
+                               <version>1.2.4</version>
+                               <executions>
+                                       <execution>
+                                               <id>generate-config</id>
+                                               <goals>
+                                                       <goal>generate-depends-file</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-checkstyle-plugin</artifactId>
                        <plugin>
                                <groupId>org.jacoco</groupId>
                                <artifactId>jacoco-maven-plugin</artifactId>
+                               <version>0.5.3.201107060350</version>
                                <configuration>
                                        <destFile>../implementation/target/jacoco-it.exec</destFile>
                                        <includes>org.opendaylight.controller.*</includes>
                                        </execution>
                                </executions>
                        </plugin>
-
                </plugins>
        </build>
        <properties>
+               <lispflowmapping.version>1.0.0-SNAPSHOT</lispflowmapping.version>
                <exam.version>3.0.0</exam.version>
-               <url.version>1.5.2</url.version>
+               <url.version>1.5.0</url.version>
                <!-- Sonar jacoco plugin to get integration test coverage info -->
                <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
                <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
                <osgi.core.version>5.0.0</osgi.core.version>
                <junit.version>4.8.1</junit.version>
                <xtend.version>2.4.3</xtend.version>
+               <old-jackson.version>1.9.8</old-jackson.version>
        </properties>
        <dependencies>
 
                        <artifactId>sal-binding-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.controller</groupId>
+                       <artifactId>sal-binding-it</artifactId>
+                       <version>1.0-SNAPSHOT</version>
+               </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>sal-common-api</artifactId>
                        <type>pom</type>
                        <version>0.5.1-SNAPSHOT</version>
                </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.lispflowmapping</groupId>
+                       <artifactId>mappingservice.yangmodel</artifactId>
+                       <version>${lispflowmapping.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.lispflowmapping</groupId>
+                       <artifactId>mappingservice.config</artifactId>
+                       <version>${lispflowmapping.version}</version>
+               </dependency>
                <dependency>
                        <groupId>org.opendaylight.lispflowmapping</groupId>
                        <artifactId>mappingservice.api</artifactId>
-                       <version>0.1.0-SNAPSHOT</version>
+                       <version>${lispflowmapping.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.lispflowmapping</groupId>
                        <artifactId>mappingservice.implementation</artifactId>
-                       <version>0.1.0-SNAPSHOT</version>
+                       <version>${lispflowmapping.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.lispflowmapping</groupId>
                        <artifactId>mappingservice.southbound</artifactId>
-                       <version>0.1.0-SNAPSHOT</version>
+                       <version>${lispflowmapping.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.lispflowmapping</groupId>
                        <artifactId>mappingservice.northbound</artifactId>
-                       <version>0.1.0-SNAPSHOT</version>
+                       <version>${lispflowmapping.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>containermanager</artifactId>
-                       <version>0.5.1-SNAPSHOT</version>
+                       <version>0.5.0-SNAPSHOT</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.controller</groupId>
+                       <artifactId>netconf-impl</artifactId>
+                       <version>${netconf.version}</version>
                </dependency>
-
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>containermanager.it.implementation</artifactId>
-                       <version>0.5.1-SNAPSHOT</version>
+                       <version>0.5.0-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>sal</artifactId>
-                       <version>0.5.1-SNAPSHOT</version>
+                       <version>${sal.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>clustering.stub</artifactId>
-                       <version>0.4.1-SNAPSHOT</version>
+                       <version>0.4.0-SNAPSHOT</version>
                </dependency>
 
                <dependency>
                <dependency>
                        <groupId>commons-codec</groupId>
                        <artifactId>commons-codec</artifactId>
-                       <version>1.8</version>
                </dependency>
                <dependency>
                        <groupId>equinoxSDK381</groupId>
                </dependency>
                <!-- Add Pax Exam -->
                <dependency>
+            <exclusions>
+                <exclusion>  <!-- declare the exclusion here -->
+                    <groupId>org.ops4j.pax.exam</groupId>
+                    <artifactId>pax-exam-container-native</artifactId>
+                </exclusion>
+            </exclusions>
                        <groupId>org.ops4j.pax.exam</groupId>
-                       <artifactId>pax-exam-container-native</artifactId>
-                       <version>${exam.version}</version>
+                       <artifactId>pax-exam-container-forked</artifactId>
                        <scope>test</scope>
+            <version>${exam.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.ops4j.pax.exam</groupId>
                        <artifactId>pax-exam-junit4</artifactId>
-                       <version>${exam.version}</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.ops4j.pax.exam</groupId>
-                       <artifactId>pax-exam-link-mvn</artifactId>
+                       <artifactId>pax-exam</artifactId>
                        <version>${exam.version}</version>
-                       <scope>test</scope>
+                       <!-- Compile scope here is intentional, it is used in TestHelper class 
+                               which could be downloaded via nexus and reused in other integration tests. -->
+                       <scope>compile</scope>
                </dependency>
                <dependency>
-                       <groupId>org.ops4j.pax.url</groupId>
-                       <artifactId>pax-url-aether</artifactId>
-                       <version>${url.version}</version>
+                       <groupId>org.ops4j.pax.exam</groupId>
+                       <artifactId>pax-exam-link-mvn</artifactId>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <artifactId>jersey-client</artifactId>
                        <version>${jersey.version}</version>
                </dependency>
-               <dependency>
-                       <groupId>com.sun.jersey</groupId>
-                       <artifactId>jersey-json</artifactId>
-                       <version>${jersey.version}</version>
-               </dependency>
                <dependency>
                        <groupId>org.opendaylight.yangtools.thirdparty</groupId>
                        <artifactId>xtend-lib-osgi</artifactId>
                        <version>2.4.3</version>
                </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>opendaylight-l2-types</artifactId>
+                       <version>${opendaylight-l2-types.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>yang-ext</artifactId>
+                       <version>${yang-ext.version}</version>
+               </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>sal-binding-broker-impl</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
+               <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>config-netconf-connector</artifactId>
+            <version>${netconf.version}</version>
+            <scope>test</scope>
+        </dependency>
+               <dependency>
+          <groupId>org.opendaylight.controller.model</groupId>
+          <artifactId>model-inventory</artifactId>
+          <version>${mdsal.version}</version>
+        </dependency>
                <dependency>
                        <groupId>org.javassist</groupId>
                        <artifactId>javassist</artifactId>
                        <version>3.17.1-GA</version>
                </dependency>
+               <dependency>
+                         <groupId>org.opendaylight.controller.thirdparty</groupId>
+                         <artifactId>exificient</artifactId>
+                         <version>0.9.2-SNAPSHOT</version>
+               </dependency>
+
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>config-manager</artifactId>
                        <groupId>org.opendaylight.controller.thirdparty</groupId>
                        <artifactId>com.sun.jersey.jersey-servlet</artifactId>
                </dependency>
+               
+               <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+      <version>${jackson.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+      <version>${jackson.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+      <version>${jackson.version}</version>
+    </dependency>
+    
+    <dependency>
+       <groupId>com.fasterxml.jackson.jaxrs</groupId>
+       <artifactId>jackson-jaxrs-json-provider</artifactId>
+       <version>${jackson.version}</version>
+    </dependency>
+
+      <dependency>
+         <groupId>com.fasterxml.jackson.jaxrs</groupId>
+         <artifactId>jackson-jaxrs-base</artifactId>
+         <version>${jackson.version}</version>
+      </dependency>
+    
                <dependency>
                        <groupId>org.codehaus.jackson</groupId>
                        <artifactId>jackson-mapper-asl</artifactId>
-                       <version>${jackson.version}</version>
+                       <version>${old-jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.codehaus.jackson</groupId>
                        <artifactId>jackson-core-asl</artifactId>
-                       <version>${jackson.version}</version>
+                       <version>${old-jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.codehaus.jackson</groupId>
                        <artifactId>jackson-jaxrs</artifactId>
-                       <version>${jackson.version}</version>
+                       <version>${old-jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.codehaus.jackson</groupId>
                        <artifactId>jackson-xc</artifactId>
-                       <version>${jackson.version}</version>
+                       <version>${old-jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.codehaus.jettison</groupId>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>switchmanager</artifactId>
-                       <version>0.6.1-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>switchmanager.implementation</artifactId>
                        <version>0.4.1-SNAPSHOT</version>
                </dependency>
-               <dependency>
-                       <groupId>org.opendaylight.controller</groupId>
-                       <artifactId>commons.httpclient</artifactId>
-                       <version>0.1.1-SNAPSHOT</version>
-               </dependency>
                <dependency>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>connectionmanager</artifactId>
                        <artifactId>antlr4-runtime-osgi-nohead</artifactId>
                        <version>4.0</version>
                </dependency>
-       </dependencies>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools</groupId>
+                       <artifactId>yang-binding</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools</groupId>
+                       <artifactId>yang-common</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>ietf-inet-types</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>ietf-yang-types</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.controller</groupId>
+                       <artifactId>config-api</artifactId>
+                       <version>0.2.3-SNAPSHOT</version>
+               </dependency>
+
+        <dependency>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
+            <version>1.4.01</version>
+        </dependency>
+    </dependencies>
 
        <profiles>
                <profile>