Bump upstreams
[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>11.0.7</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>18.0.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>5.0.4</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>netconf-topology</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.netconf</groupId>
101       <artifactId>sal-netconf-connector</artifactId>
102     </dependency>
103   </dependencies>
104
105   <build>
106     <plugins>
107       <plugin>
108         <artifactId>maven-resources-plugin</artifactId>
109         <executions>
110           <execution>
111             <id>copy-resources</id>
112             <phase>validate</phase>
113             <goals>
114               <goal>copy-resources</goal>
115             </goals>
116             <configuration>
117               <outputDirectory>${basedir}/target/resources</outputDirectory>
118               <resources>
119                 <resource>
120                   <directory>src/main/resources</directory>
121                   <filtering>true</filtering>
122                 </resource>
123               </resources>
124             </configuration>
125           </execution>
126         </executions>
127       </plugin>
128       <plugin>
129         <groupId>org.codehaus.mojo</groupId>
130         <artifactId>build-helper-maven-plugin</artifactId>
131         <executions>
132           <execution>
133             <id>attach-db-artifact</id>
134             <goals>
135               <goal>attach-artifact</goal>
136             </goals>
137             <configuration>
138               <artifacts>
139                 <artifact>
140                   <file>target/resources/org.ops4j.datasource-transporpce.cfg</file>
141                   <type>cfg</type>
142                   <classifier>datasource</classifier>
143                 </artifact>
144                 <artifact>
145                   <file>target/resources/org.opendaylight.transportpce.job.cfg</file>
146                   <type>cfg</type>
147                   <classifier>config</classifier>
148                 </artifact>
149               </artifacts>
150             </configuration>
151           </execution>
152         </executions>
153       </plugin>
154     </plugins>
155   </build>
156 </project>