Merge "add endpointcost-northbound-route"
[alto.git] / alto-basic / simple-ird / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 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
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent</artifactId>
13     <version>1.7.0-SNAPSHOT</version>
14   </parent>
15
16   <groupId>org.opendaylight.alto.basic</groupId>
17   <artifactId>alto-simple-ird-aggregator</artifactId>
18   <version>0.3.0-SNAPSHOT</version>
19   <name>alto-simple-ird</name>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25   <profiles>
26     <profile>
27       <id>minimal</id>
28       <activation>
29         <activeByDefault>true</activeByDefault>
30       </activation>
31       <modules>
32         <module>api</module>
33         <module>impl</module>
34       </modules>
35     </profile>
36
37     <profile>
38       <id>alto-dev</id>
39       <modules>
40         <module>api</module>
41         <module>impl</module>
42         <module>features</module>
43         <module>artifacts</module>
44       </modules>
45     </profile>
46
47     <profile>
48       <id>alto-test</id>
49       <modules>
50         <module>api</module>
51         <module>impl</module>
52         <module>features</module>
53         <module>artifacts</module>
54         <module>karaf</module>
55         <module>it</module>
56       </modules>
57     </profile>
58   </profiles>
59   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
60   <build>
61     <plugins>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-deploy-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-install-plugin</artifactId>
72         <configuration>
73           <skip>true</skip>
74         </configuration>
75       </plugin>
76     </plugins>
77   </build>
78
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/alto-simple-ird.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/alto-simple-ird.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://wiki.opendaylight.org/view/alto-simple-ird:Main</url>
84   </scm>
85 </project>