7d8e8e8f6923e05e8e16697ea5b8990cb3a03a88
[odlparent.git] / single-feature-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016, 2017 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>untested-single-feature-parent</artifactId>
37         <version>1.8.2-SNAPSHOT</version>
38         <relativePath>../untested-single-feature-parent</relativePath>
39     </parent>
40
41     <groupId>org.opendaylight.odlparent</groupId>
42     <artifactId>single-feature-parent</artifactId>
43     <version>1.8.2-SNAPSHOT</version>
44     <packaging>pom</packaging>
45     <name>ODL :: odlparent :: ${project.artifactId}</name>
46
47     <properties>
48         <karaf.version>${karaf4.version}</karaf.version>
49         <jacoco.skip>true</jacoco.skip>
50         <skip.karaf4.featureTest>false</skip.karaf4.featureTest>
51     </properties>
52
53     <dependencies>
54         <!-- Test the generated features.xml -->
55         <dependency>
56             <groupId>org.opendaylight.odlparent</groupId>
57             <artifactId>features4-test</artifactId>
58             <version>1.8.2-SNAPSHOT</version>
59             <scope>test</scope>
60         </dependency>
61         <!-- Force SLF4J to test scope -->
62         <dependency>
63             <groupId>org.slf4j</groupId>
64             <artifactId>slf4j-api</artifactId>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <artifactId>maven-surefire-plugin</artifactId>
73                 <version>${maven.surefire.version}</version>
74                 <configuration>
75                     <dependenciesToScan>
76                         <dependency>org.opendaylight.odlparent:features4-test</dependency>
77                     </dependenciesToScan>
78                     <additionalClasspathElements>
79                         <additionalClasspathElement>${project.build.directory}/feature</additionalClasspathElement>
80                     </additionalClasspathElements>
81                     <skip>${skip.karaf4.featureTest}</skip>
82                 </configuration>
83                 <executions>
84                     <execution>
85                         <phase>test</phase>
86                         <goals>
87                             <goal>test</goal>
88                         </goals>
89                     </execution>
90                 </executions>
91             </plugin>
92         </plugins>
93     </build>
94
95     <!--
96         Maven Site Configuration
97
98         The following configuration is necessary for maven-site-plugin to
99         correctly identify the correct deployment path for OpenDaylight Maven
100         sites.
101     -->
102     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
103
104     <distributionManagement>
105         <site>
106             <id>opendaylight-site</id>
107             <url>${nexus.site.url}/${project.artifactId}/</url>
108         </site>
109     </distributionManagement>
110
111 </project>