5e8f29193a53b52df1bd0550b83999f97b92bb61
[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>yang-test</artifactId>
36             <scope>test</scope>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>netconf-api</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>config-manager</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>config-persister-impl</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>config-manager</artifactId>
66             <scope>test</scope>
67             <type>test-jar</type>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>netconf-impl</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>netconf-monitoring</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-ssh</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>netconf-ssh</artifactId>
92             <scope>test</scope>
93             <type>test-jar</type>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>netconf-util</artifactId>
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             <scope>test</scope>
110             <type>test-jar</type>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>logback-config</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.slf4j</groupId>
118             <artifactId>slf4j-api</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.yangtools</groupId>
122             <artifactId>mockito-configuration</artifactId>
123         </dependency>
124         <dependency>
125           <groupId>org.opendaylight.controller</groupId>
126           <artifactId>commons.logback_settings</artifactId>
127         </dependency>
128     </dependencies>
129
130     <build>
131         <plugins>
132             <plugin>
133                 <groupId>org.apache.maven.plugins</groupId>
134                 <artifactId>maven-surefire-plugin</artifactId>
135                 <configuration>
136                     <forkCount>1</forkCount>
137                     <reuseForks>false</reuseForks>
138                     <perCoreThreadCount>false</perCoreThreadCount>
139                 </configuration>
140                 <executions>
141                     <execution>
142                         <id>default-test</id>
143                         <configuration>
144                             <skip>true</skip>
145                         </configuration>
146                     </execution>
147                     <execution>
148                         <id>integration-tests</id>
149                         <phase>integration-test</phase>
150                         <goals>
151                             <goal>test</goal>
152                         </goals>
153                         <configuration>
154                             <skip>false</skip>
155                             <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
156                         </configuration>
157                     </execution>
158                 </executions>
159             </plugin>
160         </plugins>
161     </build>
162 </project>