Bump to transportpce-models-18.0.1
[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>11.0.7</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-api</artifactId>
21   <version>7.0.1-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <transportpce.models.version>18.0.1</transportpce.models.version>
26   </properties>
27
28   <dependencyManagement>
29     <dependencies>
30       <dependency>
31         <groupId>org.opendaylight.transportpce.models</groupId>
32         <artifactId>transportpce-models-artifacts</artifactId>
33         <version>${transportpce.models.version}</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37     </dependencies>
38   </dependencyManagement>
39
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.transportpce.models</groupId>
43       <artifactId>openroadm-common-1.2.1</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.transportpce.models</groupId>
47       <artifactId>openroadm-common-2.2.1</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.transportpce.models</groupId>
51       <artifactId>openroadm-common-7.1.0</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.transportpce.models</groupId>
55       <artifactId>openroadm-common-10.1.0</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.transportpce.models</groupId>
59       <artifactId>openroadm-device-7.1.0</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.transportpce.models</groupId>
63       <artifactId>openroadm-network-10.1.0</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.transportpce.models</groupId>
67       <artifactId>openroadm-service-10.1.0</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.transportpce.models</groupId>
71       <artifactId>tapi-2.1.1</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-common</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
79       <artifactId>rfc6991-ietf-inet-types</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
83       <artifactId>rfc6991-ietf-yang-types</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
87       <artifactId>rfc8345-ietf-network</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
91       <artifactId>rfc8345-ietf-network-topology</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal</groupId>
95       <artifactId>yang-binding</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>com.google.guava</groupId>
99       <artifactId>guava</artifactId>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <extensions>true</extensions>
109         <configuration>
110           <instructions>
111             <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
112             <_exportcontents>
113                org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,*
114             </_exportcontents>
115           </instructions>
116         </configuration>
117       </plugin>
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-javadoc-plugin</artifactId>
121         <configuration>
122           <sourcepath>/target/generated-sources/mdsal-binding/</sourcepath>
123           <excludePackageNames>*</excludePackageNames>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128
129   <reporting>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-javadoc-plugin</artifactId>
134         <configuration>
135           <sourcepath>/target/generated-sources/mdsal-binding/</sourcepath>
136           <excludePackageNames>*</excludePackageNames>
137         </configuration>
138       </plugin>
139     </plugins>
140   </reporting>
141 </project>