Merge "Add lispflowmapping specific configuration options"
[controller.git] / opendaylight / netconf / netconf-it / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.2.5-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>netconf-it</artifactId>
12   <name>${project.artifactId}</name>
13   <properties>
14     <tinybundles.version>2.0.0</tinybundles.version>
15   </properties>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>commons.logback_settings</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>logback-config</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>mockito-configuration</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.slf4j</groupId>
32       <artifactId>slf4j-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>xmlunit</groupId>
36       <artifactId>xmlunit</artifactId>
37     </dependency>
38     <!-- compile dependencies -->
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>config-api</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>config-manager</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>config-manager</artifactId>
52       <type>test-jar</type>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>config-netconf-connector</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>config-persister-impl</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>config-util</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>netconf-api</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>netconf-client</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>netconf-client</artifactId>
83       <version>${project.version}</version>
84       <type>test-jar</type>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>netconf-impl</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>netconf-impl</artifactId>
95       <type>test-jar</type>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>netconf-mapping-api</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>netconf-monitoring</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>netconf-ssh</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>netconf-ssh</artifactId>
116       <type>test-jar</type>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>netconf-util</artifactId>
122       <type>test-jar</type>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>netty-config-api</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>yang-test</artifactId>
133       <scope>test</scope>
134     </dependency>
135   </dependencies>
136
137   <build>
138     <plugins>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-surefire-plugin</artifactId>
142         <configuration>
143           <forkCount>1</forkCount>
144           <reuseForks>false</reuseForks>
145           <perCoreThreadCount>false</perCoreThreadCount>
146         </configuration>
147         <executions>
148           <execution>
149             <id>default-test</id>
150             <configuration>
151               <skip>true</skip>
152             </configuration>
153           </execution>
154           <execution>
155             <id>integration-tests</id>
156             <goals>
157               <goal>test</goal>
158             </goals>
159             <phase>integration-test</phase>
160             <configuration>
161               <skip>false</skip>
162               <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
163             </configuration>
164           </execution>
165         </executions>
166       </plugin>
167       <plugin>
168         <groupId>org.ops4j.pax.exam</groupId>
169         <artifactId>maven-paxexam-plugin</artifactId>
170         <version>1.2.4</version>
171         <executions>
172           <execution>
173             <id>generate-config</id>
174             <goals>
175               <goal>generate-depends-file</goal>
176             </goals>
177           </execution>
178         </executions>
179       </plugin>
180     </plugins>
181   </build>
182 </project>