BUG-4219: fix karaf CLI reload
[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>aggregator-parent</artifactId>
14         <version>1.9.0-SNAPSHOT</version>
15         <relativePath>aggregator-parent</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>findbugs</module>
33         <module>license</module>
34
35         <module>bundles-test-lib</module>
36         <module>bundles-test</module>
37         <module>bundles4-test</module>
38         <module>features-test</module>
39         <module>features4-test</module>
40
41         <!-- Karaf integration -->
42         <module>karaf</module>
43         <module>karaf-plugin</module>
44         <module>karaf4-plugin</module>
45
46         <!-- Parent POMs -->
47         <module>aggregator-parent</module>
48         <module>bundle-parent</module>
49         <module>features-parent</module>
50         <module>single-feature3-parent</module>
51         <module>untested-single-feature-parent</module>
52         <module>single-feature-parent</module>
53         <module>feature3-repo-parent</module>
54         <module>feature-repo-parent</module>
55         <module>odlparent</module>
56         <module>odlparent-lite</module>
57
58         <!-- Features -->
59         <module>features</module>
60         <module>features4</module>
61
62         <!-- Artifacts -->
63         <module>odlparent-artifacts</module>
64     </modules>
65
66     <profiles>
67         <profile>
68             <!--
69                 This profile is to ensure we only build javadocs reports
70                 when we plan to deploy Maven site for our project.
71             -->
72             <id>maven-site</id>
73             <activation>
74                 <file>
75                     <exists>${user.dir}/deploy-site.xml</exists>
76                 </file>
77             </activation>
78
79             <build>
80                 <plugins>
81                     <plugin>
82                         <artifactId>maven-javadoc-plugin</artifactId>
83                         <version>2.10.4</version>
84                         <inherited>false</inherited>
85                         <executions>
86                             <execution>
87                                 <id>aggregate</id>
88                                 <goals>
89                                     <goal>aggregate</goal>
90                                 </goals>
91                                 <phase>package</phase>
92                             </execution>
93                         </executions>
94                     </plugin>
95                 </plugins>
96             </build>
97         </profile>
98     </profiles>
99
100     <!--
101         Maven Site Configuration
102
103         The following configuration is necessary for maven-site-plugin to
104         correctly identify the correct deployment path for OpenDaylight Maven
105         sites.
106     -->
107     <url>${odl.site.url}/${project.groupId}/${stream}/</url>
108
109     <distributionManagement>
110         <site>
111             <id>opendaylight-site</id>
112             <url>${nexus.site.url}/</url>
113         </site>
114     </distributionManagement>
115 </project>