Add perltidy to pre-commit linters
[transportpce.git] / common / 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.9</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.transportpce</groupId>
18   <artifactId>transportpce-common</artifactId>
19   <version>8.0.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <transportpce.models.version>18.1.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.6</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-common-2.2.1</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.transportpce.models</groupId>
56       <artifactId>openroadm-common-7.1.0</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.transportpce.models</groupId>
60       <artifactId>openroadm-common-10.1.0</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.transportpce.models</groupId>
64       <artifactId>openroadm-device-1.2.1</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce.models</groupId>
68       <artifactId>openroadm-device-2.2.1</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.transportpce.models</groupId>
72       <artifactId>openroadm-device-7.1.0</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.transportpce.models</groupId>
76       <artifactId>openroadm-network-10.1.0</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.transportpce.models</groupId>
80       <artifactId>openroadm-service-10.1.0</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>transportpce-api</artifactId>
85       <version>${project.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>util</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.yangtools</groupId>
93       <artifactId>yang-common</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.yangtools</groupId>
97       <artifactId>yang-model-api</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.yangtools</groupId>
101       <artifactId>yang-model-util</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>yang-data-api</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.yangtools</groupId>
109       <artifactId>yang-data-impl</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.yangtools</groupId>
113       <artifactId>yang-data-codec-gson</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.mdsal.model</groupId>
117       <artifactId>ietf-topology</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
121       <artifactId>rfc8345-ietf-network</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
125       <artifactId>rfc6991-ietf-inet-types</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.mdsal</groupId>
129       <artifactId>mdsal-common-api</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.mdsal</groupId>
133       <artifactId>yang-binding</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.mdsal</groupId>
137       <artifactId>mdsal-binding-api</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.mdsal</groupId>
141       <artifactId>mdsal-binding-dom-codec-spi</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.mdsal</groupId>
145       <artifactId>mdsal-binding-runtime-api</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.netconf</groupId>
149       <artifactId>netconf-topology</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>com.google.guava</groupId>
153       <artifactId>guava</artifactId>
154     </dependency>
155     <dependency>
156       <groupId>com.google.code.gson</groupId>
157       <artifactId>gson</artifactId>
158     </dependency>
159     <dependency>
160       <groupId>org.osgi</groupId>
161       <artifactId>org.osgi.service.component.annotations</artifactId>
162     </dependency>
163     <dependency>
164       <groupId>org.osgi</groupId>
165       <artifactId>org.osgi.service.metatype.annotations</artifactId>
166     </dependency>
167
168     <!-- Testing dependencies -->
169     <dependency>
170       <groupId>org.opendaylight.transportpce</groupId>
171       <artifactId>test-common</artifactId>
172       <version>${project.version}</version>
173       <scope>test</scope>
174     </dependency>
175     <dependency>
176       <groupId>org.opendaylight.mdsal</groupId>
177       <artifactId>mdsal-binding-generator</artifactId>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.opendaylight.mdsal</groupId>
182       <artifactId>mdsal-binding-runtime-spi</artifactId>
183       <scope>test</scope>
184     </dependency>
185   </dependencies>
186 </project>