Bump versions of config-subsystem and netconf-subsystem to 0.2.3-SNAPSHOT.
[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.3-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             <scope>test</scope>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>config-util</artifactId>
26             <scope>test</scope>
27         </dependency>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>yang-store-api</artifactId>
31             <scope>test</scope>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>netconf-api</artifactId>
36             <scope>test</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.bgpcep</groupId>
40             <artifactId>util</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>netconf-client</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>config-netconf-connector</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>yang-test</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>config-manager</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>config-persister-impl</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>config-manager</artifactId>
71             <scope>test</scope>
72             <type>test-jar</type>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>netconf-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>netconf-mapping-api</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>netconf-util</artifactId>
87             <scope>test</scope>
88             <type>test-jar</type>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>yang-store-impl</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>yang-store-impl</artifactId>
98             <scope>test</scope>
99             <type>test-jar</type>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>logback-config</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.slf4j</groupId>
107             <artifactId>slf4j-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.bgpcep</groupId>
111             <artifactId>mockito-configuration</artifactId>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115
116     <build>
117         <plugins>
118             <plugin>
119                 <groupId>org.apache.maven.plugins</groupId>
120                 <artifactId>maven-surefire-plugin</artifactId>
121                 <configuration>
122                     <forkCount>1</forkCount>
123                     <reuseForks>false</reuseForks>
124                     <perCoreThreadCount>false</perCoreThreadCount>
125                 </configuration>
126                 <executions>
127                     <execution>
128                         <id>default-test</id>
129                         <configuration>
130                             <skip>true</skip>
131                         </configuration>
132                     </execution>
133                     <execution>
134                         <id>integration-tests</id>
135                         <phase>integration-test</phase>
136                         <goals>
137                             <goal>test</goal>
138                         </goals>
139                         <configuration>
140                             <includes>
141                                 <include>**/org/opendaylight/controller/netconf/it/*.java</include>
142                             </includes>
143                             <skip>false</skip>
144                         </configuration>
145                     </execution>
146                 </executions>
147             </plugin>
148         </plugins>
149     </build>
150 </project>