Bump versions by x.y.(z+1)
[alto.git] / alto-basic / manual-maps / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 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 -->
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
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>1.8.3-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.alto.basic</groupId>
19   <artifactId>alto-manual-maps-aggregator</artifactId>
20   <version>0.4.3-SNAPSHOT</version>
21   <name>ODL :: alto :: ${project.artifactId}</name> <!-- DO NOT CHANGE - Used by Sonar to set project name -->
22   <packaging>pom</packaging>
23
24   <scm>
25     <connection>scm:git:ssh://git.opendaylight.org:29418/alto-manual-maps.git</connection>
26     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/alto-manual-maps.git</developerConnection>
27     <tag>HEAD</tag>
28     <url>https://wiki.opendaylight.org/view/alto-manual-maps:Main</url>
29   </scm>
30
31   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.maven.plugins</groupId>
36         <artifactId>maven-deploy-plugin</artifactId>
37         <configuration>
38           <skip>true</skip>
39         </configuration>
40       </plugin>
41       <plugin>
42         <groupId>org.apache.maven.plugins</groupId>
43         <artifactId>maven-install-plugin</artifactId>
44         <configuration>
45           <skip>true</skip>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50
51   <profiles>
52     <profile>
53       <id>minimal</id>
54       <activation>
55         <activeByDefault>true</activeByDefault>
56       </activation>
57       <modules>
58         <module>api</module>
59         <module>impl</module>
60       </modules>
61     </profile>
62
63     <profile>
64       <id>alto-dev</id>
65       <modules>
66         <module>api</module>
67         <module>impl</module>
68         <module>features</module>
69         <module>artifacts</module>
70       </modules>
71     </profile>
72
73     <profile>
74       <id>alto-test</id>
75       <modules>
76         <module>api</module>
77         <module>impl</module>
78         <module>features</module>
79         <module>artifacts</module>
80         <module>karaf</module>
81         <module>it</module>
82       </modules>
83     </profile>
84     <profile>
85       <!--
86           This profile is to ensure we only build javadocs reports
87           when we plan to deploy Maven site for our project.
88       -->
89       <id>maven-site</id>
90       <activation>
91         <file>
92           <exists>${user.dir}/deploy-site.xml</exists>
93         </file>
94       </activation>
95
96       <build>
97         <plugins>
98           <plugin>
99             <groupId>org.apache.maven.plugins</groupId>
100             <artifactId>maven-javadoc-plugin</artifactId>
101             <inherited>false</inherited>
102             <executions>
103               <execution>
104                 <id>aggregate</id>
105                 <goals>
106                   <goal>aggregate</goal>
107                 </goals>
108                 <phase>package</phase>
109               </execution>
110             </executions>
111           </plugin>
112           <plugin>
113             <artifactId>maven-checkstyle-plugin</artifactId>
114             <configuration>
115               <failsOnError>true</failsOnError>
116             </configuration>
117           </plugin>
118         </plugins>
119       </build>
120     </profile>
121   </profiles>
122
123   <!--
124       Maven Site Configuration
125
126       The following configuration is necessary for maven-site-plugin to
127       correctly identify the correct deployment path for OpenDaylight Maven
128       sites.
129   -->
130   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
131
132   <distributionManagement>
133     <site>
134       <id>opendaylight-site</id>
135       <url>${nexus.site.url}/</url>
136     </site>
137   </distributionManagement>
138 </project>