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