Merge "BUG-650: fix benchmark compilation"
[controller.git] / opendaylight / netconf / netconf-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.2.5-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>netconf-it</artifactId>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>netconf-netty-util</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>commons.logback_settings</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>logback-config</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>mockito-configuration</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>xmlunit</groupId>
37       <artifactId>xmlunit</artifactId>
38     </dependency>
39     <!-- compile dependencies -->
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>config-api</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>config-manager</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>config-manager</artifactId>
53       <type>test-jar</type>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>config-netconf-connector</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-util</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>sal-netconf-connector</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>netconf-api</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-client</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>netconf-client</artifactId>
89       <version>${project.version}</version>
90       <type>test-jar</type>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>netconf-impl</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>netconf-impl</artifactId>
101       <type>test-jar</type>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>${project.groupId}</groupId>
106       <artifactId>netconf-mapping-api</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>netconf-monitoring</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>netconf-netty-util</artifactId>
117       <type>test-jar</type>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>netconf-ssh</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>netconf-ssh</artifactId>
128       <type>test-jar</type>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>${project.groupId}</groupId>
133       <artifactId>netconf-util</artifactId>
134       <type>test-jar</type>
135       <scope>test</scope>
136     </dependency>
137     <dependency>
138       <groupId>${project.groupId}</groupId>
139       <artifactId>netty-config-api</artifactId>
140       <scope>test</scope>
141     </dependency>
142     <dependency>
143       <groupId>org.opendaylight.controller</groupId>
144       <artifactId>yang-test</artifactId>
145       <scope>test</scope>
146     </dependency>
147   </dependencies>
148
149   <build>
150     <plugins>
151       <plugin>
152         <groupId>org.ops4j.pax.exam</groupId>
153         <artifactId>maven-paxexam-plugin</artifactId>
154         <executions>
155           <execution>
156             <id>generate-config</id>
157             <goals>
158               <goal>generate-depends-file</goal>
159             </goals>
160           </execution>
161         </executions>
162       </plugin>
163     </plugins>
164   </build>
165 </project>