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