Merge "BUG 1179 - rpcResult = false but response 200"
[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
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-simple</artifactId>
51       <scope>test</scope>
52     </dependency>
53   </dependencies>
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.jacoco</groupId>
58         <artifactId>jacoco-maven-plugin</artifactId>
59         <configuration>
60           <includes>
61             <include>org.opendaylight.controller.*</include>
62           </includes>
63         </configuration>
64         <executions>
65           <execution>
66             <id>pre-test</id>
67             <goals>
68               <goal>prepare-agent</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>post-test</id>
73             <goals>
74               <goal>report</goal>
75             </goals>
76             <phase>test</phase>
77           </execution>
78         </executions>
79       </plugin>
80       <plugin>
81         <groupId>org.opendaylight.yangtools</groupId>
82         <artifactId>yang-maven-plugin</artifactId>
83         <executions>
84           <execution>
85             <goals>
86               <goal>generate-sources</goal>
87             </goals>
88             <configuration>
89               <codeGenerators>
90                 <generator>
91                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
92                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
93                 </generator>
94               </codeGenerators>
95               <inspectDependencies>true</inspectDependencies>
96             </configuration>
97           </execution>
98         </executions>
99       </plugin>
100     </plugins>
101   </build>
102   <scm>
103     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
104     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
105     <tag>HEAD</tag>
106     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
107   </scm>
108 </project>