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