Merge "BUG-2329 Add test for anyxmls inside rpc resonse for netcfon-connector"
[controller.git] / opendaylight / commons / integrationtest / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>commons.integrationtest</artifactId>
12   <version>0.6.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>ch.qos.logback</groupId>
18       <artifactId>logback-classic</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>ch.qos.logback</groupId>
22       <artifactId>logback-core</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>equinoxSDK381</groupId>
26       <artifactId>org.apache.felix.gogo.command</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>equinoxSDK381</groupId>
30       <artifactId>org.apache.felix.gogo.runtime</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>equinoxSDK381</groupId>
34       <artifactId>org.apache.felix.gogo.shell</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>equinoxSDK381</groupId>
38       <artifactId>org.eclipse.equinox.console</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>equinoxSDK381</groupId>
42       <artifactId>org.eclipse.equinox.ds</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>equinoxSDK381</groupId>
46       <artifactId>org.eclipse.equinox.util</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>equinoxSDK381</groupId>
50       <artifactId>org.eclipse.osgi.services</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.slf4j</groupId>
58       <artifactId>log4j-over-slf4j</artifactId>
59     </dependency>
60     <!-- Add Pax Exam -->
61     <dependency>
62       <groupId>org.ops4j.pax.exam</groupId>
63       <artifactId>pax-exam-junit4</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.ops4j.pax.exam</groupId>
68       <artifactId>pax-exam-link-mvn</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.ops4j.pax.url</groupId>
73       <artifactId>pax-url-aether</artifactId>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77
78   <build>
79     <plugins>
80       <plugin>
81         <groupId>org.apache.maven.plugins</groupId>
82         <artifactId>maven-checkstyle-plugin</artifactId>
83         <configuration>
84           <failsOnError>true</failsOnError>
85           <configLocation>controller/checkstyle.xml</configLocation>
86         </configuration>
87         <dependencies>
88           <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>checkstyle</artifactId>
91             <version>0.1.0-SNAPSHOT</version>
92           </dependency>
93         </dependencies>
94       </plugin>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-surefire-plugin</artifactId>
98         <configuration>
99           <skipTests>true</skipTests>
100         </configuration>
101       </plugin>
102       <plugin>
103         <groupId>org.codehaus.mojo</groupId>
104         <artifactId>properties-maven-plugin</artifactId>
105         <version>${propertymavenplugin.version}</version>
106         <executions>
107           <execution>
108             <goals>
109               <goal>set-system-properties</goal>
110             </goals>
111             <configuration>
112               <properties>
113                 <property>
114                   <name>logback.configurationFile</name>
115                   <value>${project.parent.parent.basedir}/logback.xml</value>
116                 </property>
117               </properties>
118             </configuration>
119           </execution>
120         </executions>
121       </plugin>
122       <plugin>
123         <groupId>org.ops4j.pax.exam</groupId>
124         <artifactId>maven-paxexam-plugin</artifactId>
125         <version>1.2.4</version>
126         <executions>
127           <execution>
128             <id>generate-config</id>
129             <goals>
130               <goal>generate-depends-file</goal>
131             </goals>
132           </execution>
133         </executions>
134       </plugin>
135     </plugins>
136   </build>
137   <scm>
138     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
139     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
140     <tag>HEAD</tag>
141     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
142   </scm>
143 </project>