Bump versions by x.y.(z+1)
[odlparent.git] / single-feature3-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016 Red Hat, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <!--
15          Base parent POM for building and packaging single Karaf features.
16          Karaf features are generated based on the POM dependencies; they can be supplemented by a base
17          feature.xml file in src/main/feature.
18
19          By default, such single features aren't tested for loadability; they're supposed to be aggregated
20          in a feature repository (see feature-repo-parent), which is tested using SingleFeatureTest. The
21          sft profile can be used to enforce SingleFeatureTest on single features too.
22
23          Single features which aren't part of a repository can not be considered part of a project's API.
24          In any case, refer to each project's declared features to determine their API and future
25          availability.
26
27          Users should do the following:
28
29          - specify this as their parent
30          - make sure the packaging is set to feature
31          - setup projects <dependencies/> as needed for their features
32     -->
33
34     <parent>
35         <groupId>org.opendaylight.odlparent</groupId>
36         <artifactId>odlparent</artifactId>
37         <version>1.8.3-SNAPSHOT</version>
38         <relativePath>../odlparent</relativePath>
39     </parent>
40
41     <groupId>org.opendaylight.odlparent</groupId>
42     <artifactId>single-feature3-parent</artifactId>
43     <version>1.8.3-SNAPSHOT</version>
44     <packaging>pom</packaging>
45     <name>ODL :: odlparent :: ${project.artifactId}</name>
46
47     <build>
48         <plugins>
49             <plugin>
50                 <groupId>org.apache.karaf.tooling</groupId>
51                 <artifactId>karaf-maven-plugin</artifactId>
52                 <version>${karaf.version}</version>
53                 <extensions>true</extensions>
54                 <configuration>
55                     <excludedArtifactIds>
56                         <excludedArtifactId>slf4j-api</excludedArtifactId>
57                     </excludedArtifactIds>
58                 </configuration>
59             </plugin>
60         </plugins>
61     </build>
62
63     <!--
64         Maven Site Configuration
65
66         The following configuration is necessary for maven-site-plugin to
67         correctly identify the correct deployment path for OpenDaylight Maven
68         sites.
69     -->
70     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
71
72     <distributionManagement>
73         <site>
74             <id>opendaylight-site</id>
75             <url>${nexus.site.url}/${project.artifactId}/</url>
76         </site>
77     </distributionManagement>
78
79 </project>