Initial implementation of netconf monitoring module according to http://tools.ietf...
[controller.git] / opendaylight / md-sal / sal-binding-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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     <parent>
5         <artifactId>sal-parent</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-it</artifactId>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     </scm>
15
16     <properties>
17         <exam.version>3.0.0</exam.version>
18         <url.version>1.5.0</url.version>
19         <!-- Sonar jacoco plugin to get integration test coverage info -->
20         <sonar.jacoco.reportPath>../sal-binding-broker/target/jacoco.exec</sonar.jacoco.reportPath>
21         <sonar.jacoco.itReportPath>../sal-binding-broker/target/jacoco-it.exec</sonar.jacoco.itReportPath>
22         <netconf.version>0.2.3-SNAPSHOT</netconf.version>
23         <config.version>0.2.3-SNAPSHOT</config.version>
24     </properties>
25
26     <build>
27         <plugins>
28             <plugin>
29                 <groupId>org.ops4j.pax.exam</groupId>
30                 <artifactId>maven-paxexam-plugin</artifactId>
31                 <version>1.2.4</version>
32                 <executions>
33                     <execution>
34                         <id>generate-config</id>
35                         <goals>
36                             <goal>generate-depends-file</goal>
37                         </goals>
38                     </execution>
39                 </executions>
40             </plugin>
41             <plugin>
42                 <groupId>org.jacoco</groupId>
43                 <artifactId>jacoco-maven-plugin</artifactId>
44                 <configuration>
45                     <includes>org.opendaylight.controller.*</includes>
46                 </configuration>
47                 <executions>
48                     <execution>
49                         <id>pre-test</id>
50                         <goals>
51                             <goal>prepare-agent</goal>
52                         </goals>
53                     </execution>
54                     <execution>
55                         <id>post-test</id>
56                         <phase>test</phase>
57                         <goals>
58                             <goal>report</goal>
59                         </goals>
60                     </execution>
61                 </executions>
62             </plugin>
63         </plugins>
64         <pluginManagement>
65             <plugins>
66                 <!--This plugin's configuration is used to store Eclipse 
67                     m2e settings only. It has no influence on the Maven build itself. -->
68                 <plugin>
69                     <groupId>org.eclipse.m2e</groupId>
70                     <artifactId>lifecycle-mapping</artifactId>
71                     <version>1.0.0</version>
72                     <configuration>
73                         <lifecycleMappingMetadata>
74                             <pluginExecutions>
75                                 <pluginExecution>
76                                     <pluginExecutionFilter>
77                                         <groupId>
78                                             org.ops4j.pax.exam
79                                         </groupId>
80                                         <artifactId>
81                                             maven-paxexam-plugin
82                                         </artifactId>
83                                         <versionRange>
84                                             [1.2.4,)
85                                         </versionRange>
86                                         <goals>
87                                             <goal>
88                                                 generate-depends-file
89                                             </goal>
90                                         </goals>
91                                     </pluginExecutionFilter>
92                                     <action>
93                                         <ignore></ignore>
94                                     </action>
95                                 </pluginExecution>
96                             </pluginExecutions>
97                         </lifecycleMappingMetadata>
98                     </configuration>
99                 </plugin>
100                 <plugin>
101                     <groupId>org.jacoco</groupId>
102                     <artifactId>jacoco-maven-plugin</artifactId>
103                     <version>${jacoco.version}</version>
104                     <configuration>
105                         <destFile>../sal-binding-broker/target/jacoco-it.exec</destFile>
106                         <includes>org.opendaylight.controller.*</includes>
107                     </configuration>
108                     <executions>
109                         <execution>
110                             <id>pre-test</id>
111                             <goals>
112                                 <goal>prepare-agent</goal>
113                             </goals>
114                         </execution>
115                         <execution>
116                             <id>post-test</id>
117                             <configuration>
118                                 <skip>true</skip>
119                             </configuration>
120                         </execution>
121                     </executions>
122                 </plugin>
123             </plugins>
124         </pluginManagement>
125     </build>
126
127     <dependencies>
128         <dependency>
129             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
130             <artifactId>xtend-lib-osgi</artifactId>
131             <version>2.4.3</version>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>sal-binding-broker-impl</artifactId>
137             <version>1.0-SNAPSHOT</version>
138             <scope>provided</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.ops4j.pax.exam</groupId>
142             <artifactId>pax-exam-container-native</artifactId>
143             <version>${exam.version}</version>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.ops4j.pax.exam</groupId>
148             <artifactId>pax-exam-junit4</artifactId>
149             <version>${exam.version}</version>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.opendaylight.controller</groupId>
154             <artifactId>config-netconf-connector</artifactId>
155             <version>${netconf.version}</version>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>yang-store-impl</artifactId>
161             <version>${config.version}</version>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>logback-config</artifactId>
166             <version>${config.version}</version>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.controller</groupId>
170             <artifactId>config-persister-impl</artifactId>
171             <version>${config.version}</version>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.controller</groupId>
175             <artifactId>config-persister-file-adapter</artifactId>
176             <version>${config.version}</version>
177         </dependency>
178                 <dependency>
179             <groupId>org.opendaylight.controller</groupId>
180             <artifactId>netconf-impl</artifactId>
181             <version>${netconf.version}</version>
182         </dependency>
183         <dependency>
184             <groupId>org.opendaylight.controller</groupId>
185             <artifactId>netconf-monitoring</artifactId>
186             <version>${netconf.version}</version>
187         </dependency>
188         <dependency>
189             <groupId>org.opendaylight.controller</groupId>
190             <artifactId>netconf-client</artifactId>
191             <version>${netconf.version}</version>
192         </dependency>
193         <dependency>
194             <groupId>org.ops4j.pax.exam</groupId>
195             <artifactId>pax-exam</artifactId>
196             <version>${exam.version}</version>
197             <!-- Compile scope here is intentional, it is used in TestHelper 
198                 class which could be downloaded via nexus and reused in other integration 
199                 tests. -->
200             <scope>compile</scope>
201         </dependency>
202         <dependency>
203             <groupId>org.ops4j.pax.exam</groupId>
204             <artifactId>pax-exam-link-mvn</artifactId>
205             <version>${exam.version}</version>
206             <scope>test</scope>
207         </dependency>
208         <dependency>
209             <groupId>equinoxSDK381</groupId>
210             <artifactId>org.eclipse.osgi</artifactId>
211             <version>3.8.1.v20120830-144521</version>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.slf4j</groupId>
216             <artifactId>log4j-over-slf4j</artifactId>
217             <version>1.7.2</version>
218         </dependency>
219         <dependency>
220             <groupId>ch.qos.logback</groupId>
221             <artifactId>logback-core</artifactId>
222             <version>1.0.9</version>
223         </dependency>
224         <dependency>
225             <groupId>ch.qos.logback</groupId>
226             <artifactId>logback-classic</artifactId>
227             <version>1.0.9</version>
228         </dependency>
229         <dependency>
230             <groupId>org.mockito</groupId>
231             <artifactId>mockito-all</artifactId>
232             <scope>test</scope>
233         </dependency>
234         <dependency>
235             <groupId>org.opendaylight.controller.model</groupId>
236             <artifactId>model-flow-service</artifactId>
237             <version>1.0-SNAPSHOT</version>
238             <scope>provided</scope>
239         </dependency>
240         <dependency>
241             <groupId>org.opendaylight.controller</groupId>
242             <artifactId>config-manager</artifactId>
243             <version>0.2.3-SNAPSHOT</version>
244         </dependency>
245         <dependency>
246             <groupId>org.opendaylight.controller.model</groupId>
247             <artifactId>model-flow-management</artifactId>
248             <version>1.0-SNAPSHOT</version>
249             <scope>provided</scope>
250         </dependency>
251         <dependency>
252             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
253             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
254             <version>4.0</version>
255         </dependency>
256     </dependencies>
257 </project>