96ac70f9e69967cb37b32d8ff72e1bf15640ea51
[packetcable.git] / packetcable-model / 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.opendaylight.packetcable</groupId>
7                 <artifactId>packetcable</artifactId>
8                 <version>1.3.0-SNAPSHOT</version>
9         </parent>
10         <artifactId>packetcable-model</artifactId>
11         <packaging>bundle</packaging>
12         <dependencies>
13                 <dependency>
14                         <groupId>org.opendaylight.yangtools.model</groupId>
15                         <artifactId>ietf-inet-types</artifactId>
16                 </dependency>
17                 <dependency>
18                         <groupId>org.opendaylight.yangtools.model</groupId>
19                         <artifactId>ietf-yang-types</artifactId>
20                 </dependency>
21                 <dependency>
22                         <groupId>org.opendaylight.yangtools</groupId>
23                         <artifactId>yang-binding</artifactId>
24                 </dependency>
25                 <dependency>
26                         <groupId>org.opendaylight.yangtools</groupId>
27                         <artifactId>yang-common</artifactId>
28                 </dependency>
29         </dependencies>
30
31         <build>
32                 <plugins>
33                         <plugin>
34                                 <groupId>org.opendaylight.yangtools</groupId>
35                                 <artifactId>yang-maven-plugin</artifactId>
36                                 <dependencies>
37                                         <dependency>
38                                                 <groupId>org.opendaylight.yangtools</groupId>
39                                                 <artifactId>maven-sal-api-gen-plugin</artifactId>
40                                                 <version>${yangtools.version}</version>
41                                                 <type>jar</type>
42                                         </dependency>
43                                 </dependencies>
44                                 <executions>
45                                         <execution>
46                                                 <goals>
47                                                         <goal>generate-sources</goal>
48                                                 </goals>
49                                                 <configuration>
50                                                         <yangFilesRootDir>src/main/yang</yangFilesRootDir>
51                                                         <codeGenerators>
52                                                                 <generator>
53                                                                         <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
54                                                                         <outputBaseDir>${salGeneratorPath}</outputBaseDir>
55                                                                 </generator>
56                                                         </codeGenerators>
57                                                         <inspectDependencies>true</inspectDependencies>
58                                                 </configuration>
59                                         </execution>
60                                 </executions>
61                         </plugin>
62                 </plugins>
63         </build>
64         <scm>
65                 <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
66                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67                 <tag>HEAD</tag>
68                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
69         </scm>
70 </project>