Add perltidy to pre-commit linters
[transportpce.git] / olm / 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-olm</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-device-1.2.1</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.transportpce.models</groupId>
60       <artifactId>openroadm-device-2.2.1</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.transportpce.models</groupId>
64       <artifactId>openroadm-device-7.1.0</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce.models</groupId>
68       <artifactId>openroadm-network-10.1.0</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>transportpce-api</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>transportpce-common</artifactId>
78       <version>${project.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>concepts</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>yang-common</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
90       <artifactId>rfc8345-ietf-network</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
94       <artifactId>rfc8345-ietf-network-topology</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.mdsal</groupId>
98       <artifactId>mdsal-common-api</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.mdsal</groupId>
102       <artifactId>yang-binding</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.mdsal</groupId>
106       <artifactId>mdsal-binding-api</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>com.google.guava</groupId>
110       <artifactId>guava</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.osgi</groupId>
114       <artifactId>org.osgi.service.component.annotations</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.osgi</groupId>
118       <artifactId>org.osgi.service.metatype.annotations</artifactId>
119     </dependency>
120
121     <!-- Testing Dependencies -->
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>test-common</artifactId>
125       <version>${project.version}</version>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
130       <artifactId>rfc6991-ietf-yang-types</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.mdsal</groupId>
135       <artifactId>mdsal-binding-generator</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>com.google.code.findbugs</groupId>
140       <artifactId>jsr305</artifactId>
141       <version>3.0.2</version>
142       <scope>test</scope>
143       <optional>true</optional>
144     </dependency>
145   </dependencies>
146
147   <build>
148     <plugins>
149       <plugin>
150         <groupId>org.codehaus.mojo</groupId>
151         <artifactId>build-helper-maven-plugin</artifactId>
152         <executions>
153           <execution>
154             <id>attach-artifact</id>
155             <goals>
156               <goal>attach-artifact</goal>
157             </goals>
158             <configuration>
159               <artifacts>
160                 <artifact>
161                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.cfg</file>
162                   <type>cfg</type>
163                   <classifier>config</classifier>
164                 </artifact>
165               </artifacts>
166             </configuration>
167           </execution>
168         </executions>
169       </plugin>
170     </plugins>
171   </build>
172 </project>