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