Bug 1224, Bug 1221: Added Test case scenarios for Data Change Events.
[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>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.opendaylight.controller.model</groupId>
34       <artifactId>model-flow-management</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller.model</groupId>
39       <artifactId>model-flow-service</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.ops4j.pax.exam</groupId>
44       <artifactId>pax-exam-container-native</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-simple</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-parser-impl</artifactId>
55       <scope>test</scope>
56     </dependency>
57       <dependency>
58           <groupId>org.opendaylight.controller</groupId>
59           <artifactId>sal-test-model</artifactId>
60           <version>1.1-SNAPSHOT</version>
61       </dependency>
62   </dependencies>
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.jacoco</groupId>
67         <artifactId>jacoco-maven-plugin</artifactId>
68         <configuration>
69           <includes>
70             <include>org.opendaylight.controller.*</include>
71           </includes>
72         </configuration>
73         <executions>
74           <execution>
75             <id>pre-test</id>
76             <goals>
77               <goal>prepare-agent</goal>
78             </goals>
79           </execution>
80           <execution>
81             <id>post-test</id>
82             <goals>
83               <goal>report</goal>
84             </goals>
85             <phase>test</phase>
86           </execution>
87         </executions>
88       </plugin>
89       <plugin>
90         <groupId>org.opendaylight.yangtools</groupId>
91         <artifactId>yang-maven-plugin</artifactId>
92         <executions>
93           <execution>
94             <goals>
95               <goal>generate-sources</goal>
96             </goals>
97             <configuration>
98               <codeGenerators>
99                 <generator>
100                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
101                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
102                 </generator>
103               </codeGenerators>
104               <inspectDependencies>true</inspectDependencies>
105             </configuration>
106           </execution>
107         </executions>
108       </plugin>
109     </plugins>
110   </build>
111   <scm>
112     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
113     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
114     <tag>HEAD</tag>
115     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
116   </scm>
117 </project>