Initial code drop of netconf protocol implementation
[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             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>netconf-client</artifactId>
50             <version>${project.version}</version>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>config-netconf-connector</artifactId>
56             <version>${project.version}</version>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>yang-test</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>config-manager</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>config-persister-impl</artifactId>
72             <version>${project.version}</version>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>config-manager</artifactId>
78             <version>${config.version}</version>
79             <scope>test</scope>
80             <type>test-jar</type>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>netconf-impl</artifactId>
85             <version>${project.version}</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>netconf-mapping-api</artifactId>
91             <version>${project.version}</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>netconf-util</artifactId>
97             <version>${project.version}</version>
98             <scope>test</scope>
99             <type>test-jar</type>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>yang-store-impl</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>yang-store-impl</artifactId>
109             <version>${config.version}</version>
110             <scope>test</scope>
111             <type>test-jar</type>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>logback-config</artifactId>
116             <version>0.2.1-SNAPSHOT</version>
117         </dependency>
118
119         <dependency>
120             <groupId>org.slf4j</groupId>
121             <artifactId>slf4j-api</artifactId>
122         </dependency>
123
124         <dependency>
125             <groupId>org.opendaylight.bgpcep</groupId>
126             <artifactId>mockito-configuration</artifactId>
127             <scope>test</scope>
128         </dependency>
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-surefire-plugin</artifactId>
136                 <configuration>
137                     <forkCount>1</forkCount>
138                     <reuseForks>false</reuseForks>
139                     <perCoreThreadCount>false</perCoreThreadCount>
140                 </configuration>
141                 <executions>
142                     <execution>
143                         <id>default-test</id>
144                         <configuration>
145                             <skip>true</skip>
146                         </configuration>
147                     </execution>
148                     <execution>
149                         <id>integration-tests</id>
150                         <phase>integration-test</phase>
151                         <goals>
152                             <goal>test</goal>
153                         </goals>
154                         <configuration>
155                             <includes>
156                                 <include>**/org/opendaylight/controller/netconf/it/*.java</include>
157                             </includes>
158                             <skip>false</skip>
159                         </configuration>
160                     </execution>
161                 </executions>
162             </plugin>
163         </plugins>
164     </build>
165 </project>