Bug 1280: Ensure list parent if written item is list item
[controller.git] / opendaylight / md-sal / sal-test-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>sal-parent</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>1.1-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.yangtools</groupId>
15             <artifactId>yang-binding</artifactId>
16         </dependency>
17     </dependencies>
18
19     <artifactId>sal-test-model</artifactId>
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.jacoco</groupId>
24                 <artifactId>jacoco-maven-plugin</artifactId>
25                 <configuration>
26                     <includes>
27                         <include>org.opendaylight.controller.*</include>
28                     </includes>
29                 </configuration>
30                 <executions>
31                     <execution>
32                         <id>pre-test</id>
33                         <goals>
34                             <goal>prepare-agent</goal>
35                         </goals>
36                     </execution>
37                     <execution>
38                         <id>post-test</id>
39                         <goals>
40                             <goal>report</goal>
41                         </goals>
42                         <phase>test</phase>
43                     </execution>
44                 </executions>
45             </plugin>
46             <plugin>
47                 <groupId>org.opendaylight.yangtools</groupId>
48                 <artifactId>yang-maven-plugin</artifactId>
49                 <executions>
50                     <execution>
51                         <goals>
52                             <goal>generate-sources</goal>
53                         </goals>
54                         <configuration>
55                             <codeGenerators>
56                                 <generator>
57                                     <codeGeneratorClass>
58                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
59                                     </codeGeneratorClass>
60                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
61                                 </generator>
62                             </codeGenerators>
63                             <inspectDependencies>true</inspectDependencies>
64                         </configuration>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70     <scm>
71         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
72         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
73         <tag>HEAD</tag>
74         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
75     </scm>
76
77 </project>