Add perltidy to pre-commit linters
[transportpce.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9          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.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>12.0.5</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-aggregator</artifactId>
21   <version>8.0.0-SNAPSHOT</version>
22   <name>transportpce</name>
23   <packaging>pom</packaging>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/display/ODL/TransportPCE</url>
30   </scm>
31
32   <modules>
33     <module>artifacts</module>
34     <module>api</module>
35     <module>common</module>
36     <module>test-common</module>
37     <module>renderer</module>
38     <module>networkmodel</module>
39     <module>inventory</module>
40     <module>olm</module>
41     <module>pce</module>
42     <module>servicehandler</module>
43     <module>tapi</module>
44     <module>nbinotifications</module>
45     <module>dmaap-client</module>
46     <module>features</module>
47     <module>karaf</module>
48   </modules>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-deploy-plugin</artifactId>
55         <configuration>
56           <skip>true</skip>
57         </configuration>
58       </plugin>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-install-plugin</artifactId>
62         <configuration>
63           <skip>true</skip>
64         </configuration>
65       </plugin>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-javadoc-plugin</artifactId>
69         <configuration>
70           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
71           <excludePackageNames>*</excludePackageNames>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76 </project>
77
78