Merge "Bug 2983: Added support for creation of multiple list entries"
[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.3.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.ops4j.pax.exam</groupId>
34       <artifactId>pax-exam-container-native</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.slf4j</groupId>
39       <artifactId>slf4j-simple</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-parser-impl</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-test-model</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools.model</groupId>
53       <artifactId>opendaylight-l2-types</artifactId>
54     </dependency>
55   </dependencies>
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.jacoco</groupId>
60         <artifactId>jacoco-maven-plugin</artifactId>
61         <configuration>
62           <includes>
63             <include>org.opendaylight.controller.*</include>
64           </includes>
65         </configuration>
66         <executions>
67           <execution>
68             <id>pre-test</id>
69             <goals>
70               <goal>prepare-agent</goal>
71             </goals>
72           </execution>
73           <execution>
74             <id>post-test</id>
75             <goals>
76               <goal>report</goal>
77             </goals>
78             <phase>test</phase>
79           </execution>
80         </executions>
81       </plugin>
82     </plugins>
83   </build>
84   <scm>
85     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
86     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
87     <tag>HEAD</tag>
88     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
89   </scm>
90 </project>