Bump versions by x.y.(z+1)
[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.8.3-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.alto.core</groupId>
17   <artifactId>standard-northbound-routes-aggregator</artifactId>
18   <version>0.4.3-SNAPSHOT</version>
19   <name>ODL :: alto :: ${project.artifactId}</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         <module>costmap</module>
35         <module>endpointcost</module>
36         <module>endpointproperty</module>
37       </modules>
38     </profile>
39
40     <profile>
41       <id>alto-dev</id>
42       <modules>
43         <module>example</module>
44         <module>networkmap</module>
45         <module>costmap</module>
46         <module>endpointcost</module>
47         <module>endpointproperty</module>
48       </modules>
49     </profile>
50
51     <profile>
52       <id>alto-test</id>
53       <modules>
54         <module>example</module>
55         <module>networkmap</module>
56         <module>costmap</module>
57         <module>endpointcost</module>
58       </modules>
59     </profile>
60   </profiles>
61   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-deploy-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-install-plugin</artifactId>
74         <configuration>
75           <skip>true</skip>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80 </project>