Bump upstream dependencies to Cl-SR2
[transportpce.git] / inventory / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2016 Orange and others. All rights reserved. This program and the accompanying materials
4     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
5     and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.mdsal</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>10.0.6</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.transportpce</groupId>
18   <artifactId>transportpce-inventory</artifactId>
19   <version>7.0.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <transportpce.models.version>17.2.0</transportpce.models.version>
24   </properties>
25
26   <dependencyManagement>
27     <dependencies>
28       <dependency>
29         <groupId>org.opendaylight.transportpce.models</groupId>
30         <artifactId>transportpce-models-artifacts</artifactId>
31         <version>${transportpce.models.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35       <dependency>
36         <groupId>org.opendaylight.netconf</groupId>
37         <artifactId>netconf-artifacts</artifactId>
38         <version>4.0.5</version>
39         <scope>import</scope>
40         <type>pom</type>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>openroadm-common-1.2.1</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.transportpce.models</groupId>
52       <artifactId>openroadm-device-1.2.1</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>transportpce-common</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>yang-common</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.model</groupId>
65       <artifactId>ietf-topology</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
69       <artifactId>rfc6991-ietf-inet-types</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
73       <artifactId>rfc6991-ietf-yang-types</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
77       <artifactId>rfc8345-ietf-network</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-common-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.mdsal</groupId>
85       <artifactId>yang-binding</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.mdsal</groupId>
89       <artifactId>mdsal-binding-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>com.google.guava</groupId>
93       <artifactId>guava</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.netconf</groupId>
97       <artifactId>sal-netconf-connector</artifactId>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <artifactId>maven-resources-plugin</artifactId>
105         <executions>
106           <execution>
107             <id>copy-resources</id>
108             <phase>validate</phase>
109             <goals>
110               <goal>copy-resources</goal>
111             </goals>
112             <configuration>
113               <outputDirectory>${basedir}/target/resources</outputDirectory>
114               <resources>
115                 <resource>
116                   <directory>src/main/resources</directory>
117                   <filtering>true</filtering>
118                 </resource>
119               </resources>
120             </configuration>
121           </execution>
122         </executions>
123       </plugin>
124       <plugin>
125         <groupId>org.codehaus.mojo</groupId>
126         <artifactId>build-helper-maven-plugin</artifactId>
127         <executions>
128           <execution>
129             <id>attach-db-artifact</id>
130             <goals>
131               <goal>attach-artifact</goal>
132             </goals>
133             <configuration>
134               <artifacts>
135                 <artifact>
136                   <file>target/resources/org.ops4j.datasource-transporpce.cfg</file>
137                   <type>cfg</type>
138                   <classifier>datasource</classifier>
139                 </artifact>
140                 <artifact>
141                   <file>target/resources/org.opendaylight.transportpce.job.cfg</file>
142                   <type>cfg</type>
143                   <classifier>config</classifier>
144                 </artifact>
145               </artifacts>
146             </configuration>
147           </execution>
148         </executions>
149       </plugin>
150     </plugins>
151   </build>
152 </project>