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