BUG-509, BUG-808: Added datastore support for lists without keys.
[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.controller</groupId>
19       <artifactId>sal-binding-broker-impl</artifactId>
20       <scope>test</scope>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>sal-binding-broker-impl</artifactId>
25       <type>test-jar</type>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29     <groupId>org.opendaylight.yangtools</groupId>
30     <artifactId>yang-binding</artifactId>
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       <version>1.7.2</version>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55   <build>
56     <plugins>
57     <plugin>
58         <groupId>org.opendaylight.yangtools</groupId>
59         <artifactId>yang-maven-plugin</artifactId>
60         <executions>
61           <execution>
62             <goals>
63               <goal>generate-sources</goal>
64             </goals>
65             <configuration>
66               <codeGenerators>
67                 <generator>
68                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
69                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
70                 </generator>
71               </codeGenerators>
72               <inspectDependencies>true</inspectDependencies>
73             </configuration>
74           </execution>
75         </executions>
76     </plugin>
77       <plugin>
78         <groupId>org.jacoco</groupId>
79         <artifactId>jacoco-maven-plugin</artifactId>
80         <configuration>
81           <includes>
82             <include>org.opendaylight.controller.*</include>
83           </includes>
84         </configuration>
85         <executions>
86           <execution>
87             <id>pre-test</id>
88             <goals>
89               <goal>prepare-agent</goal>
90             </goals>
91           </execution>
92           <execution>
93             <id>post-test</id>
94             <goals>
95               <goal>report</goal>
96             </goals>
97             <phase>test</phase>
98           </execution>
99         </executions>
100       </plugin>
101     </plugins>
102   </build>
103   <scm>
104     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
105     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
106     <tag>HEAD</tag>
107     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
108   </scm>
109 </project>