Resolve Bug:713 - Open snapshot only once per session.
[controller.git] / opendaylight / netconf / netconf-it / pom.xml
1 <?xml version="1.0"?>
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     <properties>
5         <tinybundles.version>2.0.0</tinybundles.version>
6     </properties>
7
8     <parent>
9         <artifactId>netconf-subsystem</artifactId>
10         <groupId>org.opendaylight.controller</groupId>
11         <version>0.2.5-SNAPSHOT</version>
12     </parent>
13
14     <artifactId>netconf-it</artifactId>
15     <name>${project.artifactId}</name>
16
17     <dependencies>
18         <!-- compile dependencies -->
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>config-api</artifactId>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>config-util</artifactId>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>netconf-api</artifactId>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>netconf-client</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>netconf-client</artifactId>
42             <version>${project.version}</version>
43             <type>test-jar</type>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>config-netconf-connector</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>netty-config-api</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>config-manager</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>config-persister-impl</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>config-manager</artifactId>
69             <scope>test</scope>
70             <type>test-jar</type>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>netconf-impl</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>netconf-impl</artifactId>
80             <scope>test</scope>
81             <type>test-jar</type>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>netconf-monitoring</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>sal-binding-it</artifactId>
91             <version>${mdsal.version}</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>netconf-mapping-api</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>netconf-ssh</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>netconf-ssh</artifactId>
107             <scope>test</scope>
108             <type>test-jar</type>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>netconf-util</artifactId>
113             <scope>test</scope>
114             <type>test-jar</type>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>yang-test</artifactId>
119             <version>${config.version}</version>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.controller</groupId>
124             <artifactId>logback-config</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.slf4j</groupId>
128             <artifactId>slf4j-api</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.yangtools</groupId>
132             <artifactId>mockito-configuration</artifactId>
133         </dependency>
134         <dependency>
135           <groupId>org.opendaylight.controller</groupId>
136           <artifactId>commons.logback_settings</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>org.ops4j.pax.tinybundles</groupId>
140             <artifactId>tinybundles</artifactId>
141             <version>${tinybundles.version}</version>
142             <scope>test</scope>
143         </dependency>
144     </dependencies>
145
146     <build>
147         <plugins>
148             <plugin>
149                 <groupId>org.apache.maven.plugins</groupId>
150                 <artifactId>maven-surefire-plugin</artifactId>
151                 <configuration>
152                     <forkCount>1</forkCount>
153                     <reuseForks>false</reuseForks>
154                     <perCoreThreadCount>false</perCoreThreadCount>
155                 </configuration>
156                 <executions>
157                     <execution>
158                         <id>default-test</id>
159                         <configuration>
160                             <skip>true</skip>
161                         </configuration>
162                     </execution>
163                     <execution>
164                         <id>integration-tests</id>
165                         <phase>integration-test</phase>
166                         <goals>
167                             <goal>test</goal>
168                         </goals>
169                         <configuration>
170                             <skip>false</skip>
171                             <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
172                         </configuration>
173                     </execution>
174                 </executions>
175             </plugin>
176             <plugin>
177                 <groupId>org.ops4j.pax.exam</groupId>
178                 <artifactId>maven-paxexam-plugin</artifactId>
179                 <version>1.2.4</version>
180                 <executions>
181                     <execution>
182                         <id>generate-config</id>
183                         <goals>
184                             <goal>generate-depends-file</goal>
185                         </goals>
186                     </execution>
187                 </executions>
188             </plugin>
189         </plugins>
190     </build>
191 </project>