Add perltidy to pre-commit linters
[transportpce.git] / renderer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2016 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 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>11.0.9</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-renderer</artifactId>
22   <version>8.0.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <transportpce.models.version>18.1.0</transportpce.models.version>
27   </properties>
28
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.transportpce.models</groupId>
33         <artifactId>transportpce-models-artifacts</artifactId>
34         <version>${transportpce.models.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40
41   <dependencies>
42     <dependency>
43       <groupId>org.opendaylight.transportpce.models</groupId>
44       <artifactId>openroadm-common-1.2.1</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>openroadm-common-2.2.1</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.transportpce.models</groupId>
52       <artifactId>openroadm-common-7.1.0</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.transportpce.models</groupId>
56       <artifactId>openroadm-common-10.1.0</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.transportpce.models</groupId>
60       <artifactId>openroadm-device-1.2.1</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.transportpce.models</groupId>
64       <artifactId>openroadm-device-2.2.1</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce.models</groupId>
68       <artifactId>openroadm-device-7.1.0</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.transportpce.models</groupId>
72       <artifactId>openroadm-service-10.1.0</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>transportpce-api</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>transportpce-common</artifactId>
82       <version>${project.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>transportpce-networkmodel</artifactId>
87       <version>${project.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>concepts</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>yang-common</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.mdsal</groupId>
99       <artifactId>mdsal-common-api</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.mdsal</groupId>
103       <artifactId>yang-binding</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.mdsal</groupId>
107       <artifactId>mdsal-binding-api</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>com.google.guava</groupId>
111       <artifactId>guava</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.osgi</groupId>
115       <artifactId>org.osgi.service.component.annotations</artifactId>
116     </dependency>
117
118     <!-- Testing Dependencies -->
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>test-common</artifactId>
122       <version>${project.version}</version>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.mdsal</groupId>
127       <artifactId>mdsal-binding-generator</artifactId>
128       <scope>test</scope>
129     </dependency>
130   </dependencies>
131 </project>