Bump versions by x.y.(z+1)
[alto.git] / alto-extensions / simple-pce / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 SNLAB 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.ext</groupId>
17   <artifactId>alto-spce-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>network-tracker</module>
34         <module>api</module>
35         <module>impl</module>
36       </modules>
37     </profile>
38
39     <profile>
40       <id>alto-dev</id>
41       <modules>
42         <module>network-tracker</module>
43         <module>api</module>
44         <module>impl</module>
45         <module>features</module>
46         <module>artifacts</module>
47       </modules>
48     </profile>
49
50     <profile>
51       <id>alto-test</id>
52       <modules>
53         <module>network-tracker</module>
54         <module>api</module>
55         <module>impl</module>
56         <module>features</module>
57         <module>artifacts</module>
58         <module>karaf</module>
59       </modules>
60     </profile>
61   </profiles>
62
63   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-deploy-plugin</artifactId>
69         <configuration>
70           <skip>true</skip>
71         </configuration>
72       </plugin>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-install-plugin</artifactId>
76         <configuration>
77           <skip>true</skip>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82
83 </project>