651f5a1432b8eca6f1abd8541b97bb966fcc204a
[yangtools.git] / model / ietf / ietf-topology / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <artifactId>model-ietf</artifactId>
6         <groupId>org.opendaylight.yangtools.model</groupId>
7         <version>0.1.1-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>ietf-topology</artifactId>
12     <version>2013.10.21.0-SNAPSHOT</version>
13     <name>${project.artifactId}</name>
14     <description>${project.artifactId}</description>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.yangtools.model</groupId>
19             <artifactId>ietf-inet-types</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.yangtools.model</groupId>
23             <artifactId>ietf-yang-types</artifactId>
24         </dependency>
25     </dependencies>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.opendaylight.yangtools</groupId>
31                 <artifactId>yang-maven-plugin</artifactId>
32                 <version>0.5.9-SNAPSHOT</version>
33                 <executions>
34                     <execution>
35                         <goals>
36                             <goal>generate-sources</goal>
37                         </goals>
38                         <configuration>
39                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
40                             <codeGenerators>
41                                 <generator>
42                                     <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
43                                     <outputBaseDir>target/generated-sources/sal</outputBaseDir>
44                                 </generator>
45                             </codeGenerators>
46                             <inspectDependencies>true</inspectDependencies>
47                         </configuration>
48                     </execution>
49                 </executions>
50                 <dependencies>
51                     <dependency>
52                         <groupId>org.opendaylight.yangtools</groupId>
53                         <artifactId>maven-sal-api-gen-plugin</artifactId>
54                         <version>0.6.0-SNAPSHOT</version>
55                         <type>jar</type>
56                     </dependency>
57                 </dependencies>
58             </plugin>
59             <plugin>
60                 <artifactId>maven-jar-plugin</artifactId>
61             </plugin>
62             <plugin>
63                 <groupId>org.apache.felix</groupId>
64                 <artifactId>maven-bundle-plugin</artifactId>
65                 <extensions>true</extensions>
66                 <configuration>
67                     <instructions>
68                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
69                     </instructions>
70                 </configuration>
71             </plugin>
72         </plugins>
73     </build>
74
75 </project>