272b686fc034ff33fbbe247b706ec536040660cb
[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>netconf-api</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>netconf-client</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-client</artifactId>
84       <version>${project.version}</version>
85       <type>test-jar</type>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>netconf-impl</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>netconf-impl</artifactId>
96       <type>test-jar</type>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>netconf-mapping-api</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>${project.groupId}</groupId>
106       <artifactId>netconf-monitoring</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>netconf-netty-util</artifactId>
112       <type>test-jar</type>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>netconf-ssh</artifactId>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>netconf-ssh</artifactId>
123       <type>test-jar</type>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>netconf-util</artifactId>
129       <type>test-jar</type>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>${project.groupId}</groupId>
134       <artifactId>netty-config-api</artifactId>
135       <scope>test</scope>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.controller</groupId>
139       <artifactId>yang-test</artifactId>
140       <scope>test</scope>
141     </dependency>
142   </dependencies>
143
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.ops4j.pax.exam</groupId>
148         <artifactId>maven-paxexam-plugin</artifactId>
149         <executions>
150           <execution>
151             <id>generate-config</id>
152             <goals>
153               <goal>generate-depends-file</goal>
154             </goals>
155           </execution>
156         </executions>
157       </plugin>
158     </plugins>
159   </build>
160 </project>