bump netty to version 4.0.10.Final
[controller.git] / opendaylight / netconf / netconf-it / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <artifactId>netconf-subsystem</artifactId>
9         <groupId>org.opendaylight.controller</groupId>
10         <version>0.2.1-SNAPSHOT</version>
11     </parent>
12
13     <artifactId>netconf-it</artifactId>
14     <name>${project.artifactId}</name>
15
16     <dependencies>
17         <!-- compile dependencies -->
18         <dependency>
19             <groupId>${project.groupId}</groupId>
20             <artifactId>config-api</artifactId>
21             <version>${config.version}</version>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>config-util</artifactId>
27             <version>${config.version}</version>
28             <scope>test</scope>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>yang-store-api</artifactId>
33             <version>${config.version}</version>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>netconf-api</artifactId>
39             <version>${project.version}</version>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.bgpcep</groupId>
44             <artifactId>util</artifactId>
45             <version>${bgpcep.version}</version>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>netconf-client</artifactId>
51             <version>${project.version}</version>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>config-netconf-connector</artifactId>
57             <version>${project.version}</version>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>yang-test</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>config-manager</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>config-persister-impl</artifactId>
73             <version>${project.version}</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>config-manager</artifactId>
79             <version>${config.version}</version>
80             <scope>test</scope>
81             <type>test-jar</type>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>netconf-impl</artifactId>
86             <version>${project.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>netconf-mapping-api</artifactId>
92             <version>${project.version}</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>netconf-util</artifactId>
98             <version>${project.version}</version>
99             <scope>test</scope>
100             <type>test-jar</type>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>yang-store-impl</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>yang-store-impl</artifactId>
110             <version>${config.version}</version>
111             <scope>test</scope>
112             <type>test-jar</type>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.controller</groupId>
116             <artifactId>logback-config</artifactId>
117             <version>0.2.1-SNAPSHOT</version>
118         </dependency>
119
120         <dependency>
121             <groupId>org.slf4j</groupId>
122             <artifactId>slf4j-api</artifactId>
123         </dependency>
124
125         <dependency>
126             <groupId>org.opendaylight.bgpcep</groupId>
127             <artifactId>mockito-configuration</artifactId>
128             <version>${bgpcep.version}</version>
129             <scope>test</scope>
130         </dependency>
131     </dependencies>
132
133     <build>
134         <plugins>
135             <plugin>
136                 <groupId>org.apache.maven.plugins</groupId>
137                 <artifactId>maven-surefire-plugin</artifactId>
138                 <configuration>
139                     <forkCount>1</forkCount>
140                     <reuseForks>false</reuseForks>
141                     <perCoreThreadCount>false</perCoreThreadCount>
142                 </configuration>
143                 <executions>
144                     <execution>
145                         <id>default-test</id>
146                         <configuration>
147                             <skip>true</skip>
148                         </configuration>
149                     </execution>
150                     <execution>
151                         <id>integration-tests</id>
152                         <phase>integration-test</phase>
153                         <goals>
154                             <goal>test</goal>
155                         </goals>
156                         <configuration>
157                             <includes>
158                                 <include>**/org/opendaylight/controller/netconf/it/*.java</include>
159                             </includes>
160                             <skip>false</skip>
161                         </configuration>
162                     </execution>
163                 </executions>
164             </plugin>
165         </plugins>
166     </build>
167 </project>