[SDNC-14] Roll northbound to version 1.1.2
[sdnc/northbound.git] / dataChange / 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" 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                 <artifactId>dataChange</artifactId>
6                 <groupId>org.openecomp.sdnc.northbound</groupId>
7                 <version>1.1.2-SNAPSHOT</version>
8         </parent>
9         <groupId>org.openecomp.sdnc.northbound</groupId>
10         <artifactId>dataChange-model</artifactId>
11         <version>1.1.2-SNAPSHOT</version>
12         <packaging>bundle</packaging>
13
14
15         <build>
16                 <plugins>
17                         <plugin>
18                                 <groupId>org.apache.felix</groupId>
19                                 <artifactId>maven-bundle-plugin</artifactId>
20                                 <extensions>true</extensions>
21                                 <configuration>
22                                         <instructions>
23                                                 <Import-Package>*</Import-Package>
24                                         </instructions>
25                                 </configuration>
26                         </plugin>
27                         <plugin>
28                                 <groupId>org.opendaylight.yangtools</groupId>
29                                 <artifactId>yang-maven-plugin</artifactId>
30                                 <version>${odl.yangtools.yang.maven.plugin.version}</version>
31                                 <dependencies>
32                                         <dependency>
33                                                 <groupId>org.opendaylight.mdsal</groupId>
34                                                 <artifactId>maven-sal-api-gen-plugin</artifactId>
35                                                 <version>${odl.sal.api.gen.plugin.version}</version>
36                                                 <type>jar</type>
37                                         </dependency>
38                                 </dependencies>
39                                 <executions>
40                                         <execution>
41                                                 <goals>
42                                                         <goal>generate-sources</goal>
43                                                 </goals>
44                                                 <configuration>
45                                                         <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir>
46                                                         <codeGenerators>
47                                                                 <generator>
48                                                                         <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
49                                                                         <outputBaseDir>${salGeneratorPath}</outputBaseDir>
50                                                                 </generator>
51                                                         </codeGenerators>
52                                                         <inspectDependencies>true</inspectDependencies>
53                                                 </configuration>
54                                         </execution>
55                                 </executions>
56                         </plugin>
57                 </plugins>
58         </build>
59
60         <dependencies>
61                 <dependency>
62                         <groupId>org.opendaylight.mdsal</groupId>
63                         <artifactId>yang-binding</artifactId>
64                         <version>${odl.mdsal.yang.binding.version}</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.opendaylight.yangtools</groupId>
68                         <artifactId>yang-common</artifactId>
69                         <version>${odl.yangtools.version}</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.opendaylight.mdsal.model</groupId>
73                         <artifactId>ietf-inet-types</artifactId>
74                         <version>${odl.ietf-inet-types.version}</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.opendaylight.mdsal.model</groupId>
78                         <artifactId>ietf-yang-types</artifactId>
79                         <version>${odl.ietf-yang-types.version}</version>
80                 </dependency>
81         </dependencies>
82 </project>