f9aa3e59e15130fa5296446f20d81a499b71f245
[mdsal.git] / dom / 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.3.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>sal-test-model</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.mdsal</groupId>
18             <artifactId>yang-binding</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.mdsal.model</groupId>
22             <artifactId>yang-ext</artifactId>
23         </dependency>
24     </dependencies>
25
26     <build>
27         <plugins>
28             <plugin>
29                 <groupId>org.opendaylight.yangtools</groupId>
30                 <artifactId>yang-maven-plugin</artifactId>
31                 <executions>
32                     <execution>
33                         <goals>
34                             <goal>generate-sources</goal>
35                         </goals>
36                         <configuration>
37                             <codeGenerators>
38                                 <generator>
39                                     <codeGeneratorClass>
40                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
41                                     </codeGeneratorClass>
42                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
43                                 </generator>
44                             </codeGenerators>
45                             <inspectDependencies>true</inspectDependencies>
46                         </configuration>
47                     </execution>
48                 </executions>
49             </plugin>
50         </plugins>
51     </build>
52     <scm>
53         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
54         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
55         <tag>HEAD</tag>
56         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
57     </scm>
58
59 </project>