Merge "BUG-459 Remove deprecated NetconfClient class."
[controller.git] / opendaylight / md-sal / sal-binding-dom-it / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-binding-dom-it</artifactId>
9     <packaging>bundle</packaging>
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       <tag>HEAD</tag>
15   </scm>
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.eclipse.xtend</groupId>
20                 <artifactId>xtend-maven-plugin</artifactId>
21             </plugin>
22             <plugin>
23                 <groupId>org.jacoco</groupId>
24                 <artifactId>jacoco-maven-plugin</artifactId>
25                 <configuration>
26                     <includes>org.opendaylight.controller.*</includes>
27                 </configuration>
28                 <executions>
29                     <execution>
30                         <id>pre-test</id>
31                         <goals>
32                             <goal>prepare-agent</goal>
33                         </goals>
34                     </execution>
35                     <execution>
36                         <id>post-test</id>
37                         <phase>test</phase>
38                         <goals>
39                             <goal>report</goal>
40                         </goals>
41                     </execution>
42                 </executions>
43             </plugin>
44         </plugins>
45     </build>
46
47     <dependencies>
48         <dependency>
49           <groupId>org.ops4j.pax.exam</groupId>
50           <artifactId>pax-exam-container-native</artifactId>
51           <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-broker-impl</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-binding-broker-impl</artifactId>
61             <type>test-jar</type>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller.model</groupId>
66             <artifactId>model-flow-service</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller.model</groupId>
71             <artifactId>model-flow-management</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>org.slf4j</groupId>
81             <artifactId>slf4j-simple</artifactId>
82             <scope>test</scope>
83             <version>1.7.2</version>
84         </dependency>
85     </dependencies>
86 </project>