Fix warnings about overriden versions
[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                 <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         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-broker-impl</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-binding-broker-impl</artifactId>
64             <type>test-jar</type>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.controller.model</groupId>
69             <artifactId>model-flow-service</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller.model</groupId>
74             <artifactId>model-flow-management</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80         </dependency>
81
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-simple</artifactId>
85             <scope>test</scope>
86             <version>1.7.2</version>
87         </dependency>
88     </dependencies>
89 </project>