b3040ea8c89faa343f6c6693e3fecf195aa100e4
[alto.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Copyright (c) Yale University 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" 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   <prerequisites>
11     <maven>3.0</maven>
12   </prerequisites>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent</artifactId>
17     <version>3.1.0</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.alto</groupId>
22   <artifactId>alto-parent</artifactId>
23   <version>0.7.0-SNAPSHOT</version>
24   <name>alto</name> <!-- Used by Sonar to set project name -->
25   <packaging>pom</packaging>
26
27   <scm>
28     <connection>scm:git:ssh://git.opendaylight.org:29418/alto.git</connection>
29     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/alto.git</developerConnection>
30     <url>https://wiki.opendaylight.org/view/ALTO:Main</url>
31     <tag>HEAD</tag>
32   </scm>
33
34   <profiles>
35     <profile>
36       <id>minimal</id>
37       <activation>
38         <activeByDefault>true</activeByDefault>
39       </activation>
40       <modules>
41         <module>alto-core</module>
42         <module>alto-basic</module>
43         <module>alto-extensions</module>
44         <module>alto-release-features</module>
45       </modules>
46     </profile>
47
48     <profile>
49       <id>alto-test</id>
50       <modules>
51         <module>alto-core</module>
52         <module>alto-basic</module>
53         <module>alto-extensions</module>
54         <module>alto-release-features</module>
55         <module>alto-karaf</module>
56       </modules>
57     </profile>
58   </profiles>
59
60   <!--
61       Maven Site Configuration
62
63       The following configuration is necessary for maven-site-plugin to
64       correctly identify the correct deployment path for OpenDaylight Maven
65       sites.
66   -->
67   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
68
69   <distributionManagement>
70     <site>
71       <id>opendaylight-site</id>
72       <url>${nexus.site.url}/</url>
73     </site>
74   </distributionManagement>
75 </project>