Update all pom.xml to be aligned with Oxygen
[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>0.12.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-api</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>transportpce-ordmodels</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30   </dependencies>
31
32   <!--
33     Private references
34   -->
35   <build>
36      <plugins>
37        <plugin>
38          <groupId>org.apache.felix</groupId>
39          <artifactId>maven-bundle-plugin</artifactId>
40          <version>3.0.1</version>
41          <extensions>true</extensions>
42          <configuration>
43            <instructions>
44              <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
45              <_exportcontents>
46                org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.transportpce.stubrenderer.rev170403.service.implementation.request.input,
47                org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,
48                org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.link,
49                org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.links,*
50              </_exportcontents>
51            </instructions>
52          </configuration>
53        </plugin>
54        <plugin>
55          <groupId>org.apache.maven.plugins</groupId>
56          <artifactId>maven-javadoc-plugin</artifactId>
57          <configuration>
58            <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
59            <excludePackageNames>*</excludePackageNames>
60          </configuration>
61        </plugin>
62      </plugins>
63   </build>
64
65   <reporting>
66      <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-javadoc-plugin</artifactId>
70         <configuration>
71           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
72           <excludePackageNames>*</excludePackageNames>
73         </configuration>
74       </plugin>
75     </plugins>
76   </reporting>
77
78 </project>