Move Checkstyle module MethodName up in XML.
[odlparent.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3  Copyright (c) 2014, 2015 Cisco Systems, Inc. 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 --><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">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent-lite</artifactId>
14         <version>1.7.0-SNAPSHOT</version>
15         <relativePath>odlparent-lite</relativePath>
16     </parent>
17
18     <artifactId>odlparent-aggregator</artifactId>
19     <name>odlparent</name> <!-- Used by Sonar to set project name -->
20     <packaging>pom</packaging>
21
22     <scm>
23         <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
24         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
25         <tag>HEAD</tag>
26         <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
27     </scm>
28
29     <modules>
30         <!-- odlparent tools -->
31         <module>checkstyle</module>
32         <module>license</module>
33
34         <!-- odlparent core -->
35         <module>bundle-parent</module>
36         <module>features-parent</module>
37         <module>features-test</module>
38         <module>features-odlparent</module>
39         <module>features-akka</module>
40         <module>odlparent-artifacts</module>
41         <module>odlparent</module>
42         <module>odlparent-lite</module>
43         <module>karaf-plugin</module>
44     </modules>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <artifactId>maven-deploy-plugin</artifactId>
50                 <configuration>
51                     <skip>true</skip>
52                 </configuration>
53             </plugin>
54         </plugins>
55     </build>
56
57     <profiles>
58         <profile>
59             <!--
60                 This profile is to ensure we only build javadocs reports
61                 when we plan to deploy Maven site for our project.
62             -->
63             <id>maven-site</id>
64             <activation>
65                 <file>
66                     <exists>${user.dir}/deploy-site.xml</exists>
67                 </file>
68             </activation>
69
70             <build>
71                 <plugins>
72                     <plugin>
73                         <artifactId>maven-javadoc-plugin</artifactId>
74                         <version>2.10.3</version>
75                         <inherited>false</inherited>
76                         <executions>
77                             <execution>
78                                 <id>aggregate</id>
79                                 <goals>
80                                     <goal>aggregate</goal>
81                                 </goals>
82                                 <phase>package</phase>
83                             </execution>
84                         </executions>
85                     </plugin>
86                 </plugins>
87             </build>
88         </profile>
89     </profiles>
90
91     <!--
92         Maven Site Configuration
93
94         The following configuration is necessary for maven-site-plugin to
95         correctly identify the correct deployment path for OpenDaylight Maven
96         sites.
97     -->
98     <url>${odl.site.url}/${project.groupId}/${stream}/</url>
99
100     <distributionManagement>
101         <site>
102             <id>opendaylight-site</id>
103             <url>${nexus.site.url}/</url>
104         </site>
105     </distributionManagement>
106 </project>