fix some minor issues
[transportpce.git] / ordmodels / device / 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>5.0.10</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce.ordmodels</groupId>
20   <artifactId>transportpce-ordmodels-device</artifactId>
21   <version>2.0.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.opendaylight.netconf</groupId>
28         <artifactId>netconf-artifacts</artifactId>
29         <version>1.8.1-SNAPSHOT</version>
30         <scope>import</scope>
31         <type>pom</type>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <!-- ord model dependencies -->
38     <dependency>
39       <groupId>org.opendaylight.transportpce.ordmodels</groupId>
40       <artifactId>transportpce-ordmodels-common</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43
44     <!-- other model dependencies -->
45     <dependency>
46       <groupId>org.opendaylight.netconf</groupId>
47       <artifactId>ietf-netconf</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>iana-afn-safi</artifactId>
52       <!--version>2013.07.04.17.9</version-->
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
56       <artifactId>rfc6991-ietf-inet-types</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
60       <artifactId>rfc6991-ietf-yang-types</artifactId>
61     </dependency>
62   </dependencies>
63
64   <build>
65      <plugins>
66        <plugin>
67          <groupId>org.apache.felix</groupId>
68          <artifactId>maven-bundle-plugin</artifactId>
69          <!--version>3.0.1</version-->
70          <extensions>true</extensions>
71          <configuration>
72            <instructions>
73              <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
74              <_exportcontents>
75                org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.internal.link,
76                org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.internal.links,*
77              </_exportcontents>
78            </instructions>
79          </configuration>
80        </plugin>
81        <plugin>
82          <groupId>org.apache.maven.plugins</groupId>
83          <artifactId>maven-javadoc-plugin</artifactId>
84          <configuration>
85            <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
86            <excludePackageNames>*</excludePackageNames>
87          </configuration>
88        </plugin>
89      </plugins>
90   </build>
91
92 </project>