Add perltidy to pre-commit linters
[transportpce.git] / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>10.0.6</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-api</artifactId>
21   <version>7.0.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <transportpce.models.version>17.2.0</transportpce.models.version>
26   </properties>
27
28   <dependencyManagement>
29     <dependencies>
30       <dependency>
31         <groupId>org.opendaylight.transportpce.models</groupId>
32         <artifactId>transportpce-models-artifacts</artifactId>
33         <version>${transportpce.models.version}</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37     </dependencies>
38   </dependencyManagement>
39
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.transportpce.models</groupId>
43       <artifactId>openroadm-common-1.2.1</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.transportpce.models</groupId>
47       <artifactId>openroadm-common-2.2.1</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.transportpce.models</groupId>
51       <artifactId>openroadm-common-7.1.0</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.transportpce.models</groupId>
55       <artifactId>openroadm-common-10.1.0</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.transportpce.models</groupId>
59       <artifactId>openroadm-device-7.1.0</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.transportpce.models</groupId>
63       <artifactId>openroadm-network-10.1.0</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.transportpce.models</groupId>
67       <artifactId>openroadm-service-10.1.0</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.transportpce.models</groupId>
71       <artifactId>tapi-2.1.1</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-common</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
79       <artifactId>rfc6991-ietf-inet-types</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
83       <artifactId>rfc6991-ietf-yang-types</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
87       <artifactId>rfc8345-ietf-network</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
91       <artifactId>rfc8345-ietf-network-topology</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>com.google.guava</groupId>
95       <artifactId>guava</artifactId>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
108             <_exportcontents>
109                org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,*
110             </_exportcontents>
111           </instructions>
112         </configuration>
113       </plugin>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-javadoc-plugin</artifactId>
117         <configuration>
118           <sourcepath>/target/generated-sources/mdsal-binding/</sourcepath>
119           <excludePackageNames>*</excludePackageNames>
120         </configuration>
121       </plugin>
122     </plugins>
123   </build>
124
125   <reporting>
126     <plugins>
127       <plugin>
128         <groupId>org.apache.maven.plugins</groupId>
129         <artifactId>maven-javadoc-plugin</artifactId>
130         <configuration>
131           <sourcepath>/target/generated-sources/mdsal-binding/</sourcepath>
132           <excludePackageNames>*</excludePackageNames>
133         </configuration>
134       </plugin>
135     </plugins>
136   </reporting>
137 </project>