99469b5927e19c96154fee2afccdb7ff9be99296
[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>9.0.4</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce.ordmodels</groupId>
20   <artifactId>transportpce-ordmodels-device</artifactId>
21   <version>5.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>3.0.5</version>
30         <scope>import</scope>
31         <type>pom</type>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.transportpce.ordmodels</groupId>
39       <artifactId>transportpce-ordmodels-common</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>concepts</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-common</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
52       <artifactId>rfc6991-ietf-inet-types</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
56       <artifactId>rfc6991-ietf-yang-types</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>com.google.guava</groupId>
60       <artifactId>guava</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.netconf</groupId>
64       <artifactId>ietf-netconf</artifactId>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <extensions>true</extensions>
74         <configuration>
75           <instructions>
76             <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
77             <_exportcontents>
78               org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.internal.link,
79               org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.internal.links,*
80             </_exportcontents>
81           </instructions>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-javadoc-plugin</artifactId>
87         <configuration>
88           <sourcepath>/target/generated-sources/mdsal-binding/</sourcepath>
89           <excludePackageNames>*</excludePackageNames>
90         </configuration>
91       </plugin>
92     </plugins>
93   </build>
94 </project>