Merge "Fixes bug 2114"
[controller.git] / opendaylight / md-sal / sal-binding-dom-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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-dom-it</artifactId>
10   <packaging>jar</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>junit</groupId>
15       <artifactId>junit</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.opendaylight.yangtools</groupId>
19       <artifactId>yang-binding</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-binding-broker-impl</artifactId>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-binding-broker-impl</artifactId>
29       <type>test-jar</type>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-flow-service</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.ops4j.pax.exam</groupId>
39       <artifactId>pax-exam-container-native</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.slf4j</groupId>
44       <artifactId>slf4j-simple</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>yang-parser-impl</artifactId>
50       <scope>test</scope>
51     </dependency>
52       <dependency>
53           <groupId>org.opendaylight.controller</groupId>
54           <artifactId>sal-test-model</artifactId>
55           <version>1.2.0-SNAPSHOT</version>
56       </dependency>
57   </dependencies>
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.jacoco</groupId>
62         <artifactId>jacoco-maven-plugin</artifactId>
63         <configuration>
64           <includes>
65             <include>org.opendaylight.controller.*</include>
66           </includes>
67         </configuration>
68         <executions>
69           <execution>
70             <id>pre-test</id>
71             <goals>
72               <goal>prepare-agent</goal>
73             </goals>
74           </execution>
75           <execution>
76             <id>post-test</id>
77             <goals>
78               <goal>report</goal>
79             </goals>
80             <phase>test</phase>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89     <tag>HEAD</tag>
90     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
91   </scm>
92 </project>