fix dmaap-listener startup and library
[sdnc/northbound.git] / asdcApi / 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>asdcApi</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>asdcApi-model</artifactId>
11         <version>1.1.2-SNAPSHOT</version>
12         <packaging>bundle</packaging>
13
14         <build>
15
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         <dependencies>
60                 <dependency>
61                         <groupId>org.opendaylight.mdsal</groupId>
62                         <artifactId>yang-binding</artifactId>
63                         <version>${odl.mdsal.yang.binding.version}</version>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.opendaylight.yangtools</groupId>
67                         <artifactId>yang-common</artifactId>
68                         <version>${odl.yangtools.version}</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.opendaylight.mdsal.model</groupId>
72                         <artifactId>ietf-inet-types</artifactId>
73                         <version>${odl.ietf-inet-types.version}</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.opendaylight.mdsal.model</groupId>
77                         <artifactId>ietf-yang-types</artifactId>
78                         <version>${odl.ietf-yang-types.version}</version>
79                 </dependency>
80         </dependencies>
81 </project>