Merge "Exception for URI /restconf/operations/module_name:rpc ended with slash"
[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.5-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>netconf-api</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>netconf-client</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>config-netconf-connector</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>config-manager</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>config-persister-impl</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>config-manager</artifactId>
59             <scope>test</scope>
60             <type>test-jar</type>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>netconf-impl</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>netconf-monitoring</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>sal-binding-it</artifactId>
75             <version>${mdsal.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>netconf-mapping-api</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>netconf-ssh</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>netconf-ssh</artifactId>
91             <scope>test</scope>
92             <type>test-jar</type>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>netconf-util</artifactId>
97             <scope>test</scope>
98             <type>test-jar</type>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>yang-test</artifactId>
103             <version>${config.version}</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>yang-store-impl</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}</groupId>
113             <artifactId>yang-store-impl</artifactId>
114             <scope>test</scope>
115             <type>test-jar</type>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>logback-config</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.slf4j</groupId>
123             <artifactId>slf4j-api</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>mockito-configuration</artifactId>
128         </dependency>
129         <dependency>
130           <groupId>org.opendaylight.controller</groupId>
131           <artifactId>commons.logback_settings</artifactId>
132         </dependency>
133     </dependencies>
134
135     <build>
136         <plugins>
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-surefire-plugin</artifactId>
140                 <configuration>
141                     <forkCount>1</forkCount>
142                     <reuseForks>false</reuseForks>
143                     <perCoreThreadCount>false</perCoreThreadCount>
144                 </configuration>
145                 <executions>
146                     <execution>
147                         <id>default-test</id>
148                         <configuration>
149                             <skip>true</skip>
150                         </configuration>
151                     </execution>
152                     <execution>
153                         <id>integration-tests</id>
154                         <phase>integration-test</phase>
155                         <goals>
156                             <goal>test</goal>
157                         </goals>
158                         <configuration>
159                             <skip>false</skip>
160                             <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
161                         </configuration>
162                     </execution>
163                 </executions>
164             </plugin>
165             <plugin>
166                 <groupId>org.ops4j.pax.exam</groupId>
167                 <artifactId>maven-paxexam-plugin</artifactId>
168                 <version>1.2.4</version>
169                 <executions>
170                     <execution>
171                         <id>generate-config</id>
172                         <goals>
173                             <goal>generate-depends-file</goal>
174                         </goals>
175                     </execution>
176                 </executions>
177             </plugin>
178         </plugins>
179     </build>
180 </project>