[maven-release-plugin] prepare for next development iteration
[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
5     <parent>
6         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.4-SNAPSHOT</version>
9     </parent>
10
11     <artifactId>netconf-it</artifactId>
12     <name>${project.artifactId}</name>
13
14     <dependencies>
15         <!-- compile dependencies -->
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>config-api</artifactId>
19             <scope>test</scope>
20         </dependency>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>config-util</artifactId>
24             <scope>test</scope>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>yang-store-api</artifactId>
29             <scope>test</scope>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>yang-test</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>netconf-api</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>netconf-client</artifactId>
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>config-manager</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>config-persister-impl</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>config-manager</artifactId>
64             <scope>test</scope>
65             <type>test-jar</type>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>netconf-impl</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>netconf-monitoring</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>netconf-mapping-api</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>netconf-ssh</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>netconf-ssh</artifactId>
90             <scope>test</scope>
91             <type>test-jar</type>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>netconf-util</artifactId>
96             <scope>test</scope>
97             <type>test-jar</type>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>yang-store-impl</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>yang-store-impl</artifactId>
107             <scope>test</scope>
108             <type>test-jar</type>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.controller</groupId>
112             <artifactId>logback-config</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.slf4j</groupId>
116             <artifactId>slf4j-api</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>mockito-configuration</artifactId>
121         </dependency>
122         <dependency>
123           <groupId>org.opendaylight.controller</groupId>
124           <artifactId>commons.logback_settings</artifactId>
125         </dependency>
126     </dependencies>
127
128     <build>
129         <plugins>
130             <plugin>
131                 <groupId>org.apache.maven.plugins</groupId>
132                 <artifactId>maven-surefire-plugin</artifactId>
133                 <configuration>
134                     <forkCount>1</forkCount>
135                     <reuseForks>false</reuseForks>
136                     <perCoreThreadCount>false</perCoreThreadCount>
137                 </configuration>
138                 <executions>
139                     <execution>
140                         <id>default-test</id>
141                         <configuration>
142                             <skip>true</skip>
143                         </configuration>
144                     </execution>
145                     <execution>
146                         <id>integration-tests</id>
147                         <phase>integration-test</phase>
148                         <goals>
149                             <goal>test</goal>
150                         </goals>
151                         <configuration>
152                             <skip>false</skip>
153                             <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
154                         </configuration>
155                     </execution>
156                 </executions>
157             </plugin>
158         </plugins>
159     </build>
160 </project>