Merge changes I67420353,I6851f9b9
[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>${project.groupId}</groupId>
132       <artifactId>sal-binding-it</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>yang-test</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.ops4j.pax.tinybundles</groupId>
141       <artifactId>tinybundles</artifactId>
142       <version>${tinybundles.version}</version>
143       <scope>test</scope>
144     </dependency>
145   </dependencies>
146
147   <build>
148     <plugins>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-surefire-plugin</artifactId>
152         <configuration>
153           <forkCount>1</forkCount>
154           <reuseForks>false</reuseForks>
155           <perCoreThreadCount>false</perCoreThreadCount>
156         </configuration>
157         <executions>
158           <execution>
159             <id>default-test</id>
160             <configuration>
161               <skip>true</skip>
162             </configuration>
163           </execution>
164           <execution>
165             <id>integration-tests</id>
166             <goals>
167               <goal>test</goal>
168             </goals>
169             <phase>integration-test</phase>
170             <configuration>
171               <skip>false</skip>
172               <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
173             </configuration>
174           </execution>
175         </executions>
176       </plugin>
177       <plugin>
178         <groupId>org.ops4j.pax.exam</groupId>
179         <artifactId>maven-paxexam-plugin</artifactId>
180         <version>1.2.4</version>
181         <executions>
182           <execution>
183             <id>generate-config</id>
184             <goals>
185               <goal>generate-depends-file</goal>
186             </goals>
187           </execution>
188         </executions>
189       </plugin>
190     </plugins>
191   </build>
192 </project>