96a2a42277a5168cf0b0b1debe9182ee8e8b0e9a
[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.3-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   <build>
33      <plugins>
34        <plugin>
35          <groupId>org.apache.felix</groupId>
36          <artifactId>maven-bundle-plugin</artifactId>
37          <version>3.0.1</version>
38          <extensions>true</extensions>
39          <configuration>
40            <instructions>
41              <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
42              <_exportcontents>
43                org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,*
44              </_exportcontents>
45            </instructions>
46          </configuration>
47        </plugin>
48        <plugin>
49          <groupId>org.apache.maven.plugins</groupId>
50          <artifactId>maven-javadoc-plugin</artifactId>
51          <configuration>
52            <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
53            <excludePackageNames>*</excludePackageNames>
54          </configuration>
55        </plugin>
56      </plugins>
57   </build>
58
59   <reporting>
60      <plugins>
61       <plugin>
62         <groupId>org.apache.maven.plugins</groupId>
63         <artifactId>maven-javadoc-plugin</artifactId>
64         <configuration>
65           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
66           <excludePackageNames>*</excludePackageNames>
67         </configuration>
68       </plugin>
69     </plugins>
70   </reporting>
71
72 </project>