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