Start to handle northbound for network map
[alto.git] / alto-core / standard-northbound-routes / 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 --><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">
8
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>odlparent</artifactId>
12     <version>1.6.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.alto.core</groupId>
17   <artifactId>standard-northbound-routes-aggregator</artifactId>
18   <version>0.2.0-SNAPSHOT</version>
19   <name>alto-standard-nb-routes-aggregator</name>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25
26   <profiles>
27     <profile>
28       <id>minimal</id>
29       <activation>
30         <activeByDefault>true</activeByDefault>
31       </activation>
32       <modules>
33         <module>networkmap</module>
34       </modules>
35     </profile>
36
37     <profile>
38       <id>alto-dev</id>
39       <modules>
40         <module>example</module>
41         <module>networkmap</module>
42       </modules>
43     </profile>
44
45     <profile>
46       <id>alto-test</id>
47       <modules>
48         <module>example</module>
49       </modules>
50     </profile>
51   </profiles>
52   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-deploy-plugin</artifactId>
58         <configuration>
59           <skip>true</skip>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-install-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71 </project>