Add perltidy to pre-commit linters
[transportpce.git] / servicehandler / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 Orange and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9
10 Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange
11 -->
12 <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">
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.mdsal</groupId>
17     <artifactId>binding-parent</artifactId>
18     <version>13.0.1</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.transportpce</groupId>
23   <artifactId>transportpce-servicehandler</artifactId>
24   <version>10.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <transportpce.models.version>20.0.0-SNAPSHOT</transportpce.models.version>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.transportpce.models</groupId>
35         <artifactId>transportpce-models-artifacts</artifactId>
36         <version>${transportpce.models.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.transportpce.models</groupId>
46       <artifactId>openroadm-common-7.1.0</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.transportpce.models</groupId>
50       <artifactId>openroadm-common-13.1.0</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.transportpce.models</groupId>
54       <artifactId>openroadm-service-13.1.0</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>transportpce-api</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>transportpce-common</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>transportpce-networkmodel</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>transportpce-pce</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>transportpce-renderer</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>concepts</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>yang-common</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
91       <artifactId>rfc6991-ietf-yang-types</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal</groupId>
95       <artifactId>mdsal-common-api</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.mdsal</groupId>
99       <artifactId>yang-binding</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.mdsal</groupId>
103       <artifactId>mdsal-binding-api</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>com.github.spotbugs</groupId>
107       <artifactId>spotbugs-annotations</artifactId>
108       <optional>true</optional>
109     </dependency>
110     <dependency>
111       <groupId>com.google.guava</groupId>
112       <artifactId>guava</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.osgi</groupId>
116       <artifactId>org.osgi.service.component.annotations</artifactId>
117     </dependency>
118
119     <!-- Testing Dependencies -->
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>test-common</artifactId>
123       <version>${project.version}</version>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.mdsal</groupId>
128       <artifactId>mdsal-binding-generator</artifactId>
129       <scope>test</scope>
130     </dependency>
131   </dependencies>
132 </project>