Add node-info in portmapping structure
[transportpce.git] / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>3.0.9</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-api</artifactId>
21   <version>0.4.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}.ordmodels</groupId>
27       <artifactId>transportpce-ordmodels-common</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}.ordmodels</groupId>
32       <artifactId>transportpce-ordmodels-network</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}.ordmodels</groupId>
37       <artifactId>transportpce-ordmodels-service</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
42       <artifactId>rfc6991-ietf-inet-types</artifactId>
43     </dependency>
44   </dependencies>
45
46   <build>
47      <plugins>
48        <plugin>
49          <groupId>org.apache.felix</groupId>
50          <artifactId>maven-bundle-plugin</artifactId>
51          <version>3.0.1</version>
52          <extensions>true</extensions>
53          <configuration>
54            <instructions>
55              <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
56              <_exportcontents>
57                org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,*
58              </_exportcontents>
59            </instructions>
60          </configuration>
61        </plugin>
62        <plugin>
63          <groupId>org.apache.maven.plugins</groupId>
64          <artifactId>maven-javadoc-plugin</artifactId>
65          <configuration>
66            <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
67            <excludePackageNames>*</excludePackageNames>
68          </configuration>
69        </plugin>
70      </plugins>
71   </build>
72
73   <reporting>
74      <plugins>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-javadoc-plugin</artifactId>
78         <configuration>
79           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
80           <excludePackageNames>*</excludePackageNames>
81         </configuration>
82       </plugin>
83     </plugins>
84   </reporting>
85
86 </project>