Fix followerDistributedDataStore tear down
[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.odlparent</groupId>
6     <artifactId>odlparent</artifactId>
7     <version>6.0.4</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-binding-dom-it</artifactId>
13   <version>1.11.0-SNAPSHOT</version>
14   <packaging>jar</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.yangtools</groupId>
20         <artifactId>yangtools-artifacts</artifactId>
21         <version>4.0.6</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.mdsal</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>5.0.9</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>1.11.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>yang-binding</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-broker-impl</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-broker-impl</artifactId>
59       <type>test-jar</type>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.ops4j.pax.exam</groupId>
64       <artifactId>pax-exam-container-native</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>slf4j-simple</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>yang-test-util</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-test-model</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.mdsal.model</groupId>
82       <artifactId>opendaylight-l2-types</artifactId>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.jacoco</groupId>
90         <artifactId>jacoco-maven-plugin</artifactId>
91         <configuration>
92           <includes>
93             <include>org.opendaylight.controller.*</include>
94           </includes>
95         </configuration>
96         <executions>
97           <execution>
98             <id>pre-test</id>
99             <goals>
100               <goal>prepare-agent</goal>
101             </goals>
102           </execution>
103           <execution>
104             <id>post-test</id>
105             <goals>
106               <goal>report</goal>
107             </goals>
108             <phase>test</phase>
109           </execution>
110         </executions>
111       </plugin>
112     </plugins>
113   </build>
114
115   <scm>
116     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
117     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
118     <tag>HEAD</tag>
119     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
120   </scm>
121
122 </project>