Bump versions to 6.0.6-SNAPSHOT
[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>6.0.6-SNAPSHOT</version>
38         <relativePath>../untested-single-feature-parent</relativePath>
39     </parent>
40
41     <artifactId>single-feature-parent</artifactId>
42     <packaging>pom</packaging>
43     <name>ODL :: odlparent :: ${project.artifactId}</name>
44
45     <properties>
46         <jacoco.skip>true</jacoco.skip>
47         <skip.karaf.featureTest>false</skip.karaf.featureTest>
48     </properties>
49
50     <dependencies>
51         <!-- Test the generated features.xml -->
52         <dependency>
53             <groupId>org.opendaylight.odlparent</groupId>
54             <artifactId>features-test</artifactId>
55             <version>6.0.6-SNAPSHOT</version>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.odlparent</groupId>
60             <artifactId>bundles-test-lib</artifactId>
61             <version>6.0.6-SNAPSHOT</version>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.karaf.bundle</groupId>
66             <artifactId>org.apache.karaf.bundle.core</artifactId>
67             <version>${karaf.version}</version>
68             <scope>test</scope>
69         </dependency>
70         <!-- Force SLF4J to test scope -->
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-api</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.osgi</groupId>
78             <!-- required due to https://jira.opendaylight.org/browse/ODLPARENT-136 -->
79             <artifactId>osgi.cmpn</artifactId>
80             <scope>test</scope>
81         </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <artifactId>maven-surefire-plugin</artifactId>
88                 <configuration>
89                     <dependenciesToScan>
90                         <dependency>org.opendaylight.odlparent:features-test</dependency>
91                     </dependenciesToScan>
92                     <additionalClasspathElements>
93                         <additionalClasspathElement>${project.build.directory}/feature</additionalClasspathElement>
94                     </additionalClasspathElements>
95                     <skip>${skip.karaf.featureTest}</skip>
96                     <systemPropertyVariables>
97                       <!-- Use the same repository for Pax Exam as is used for Maven -->
98                       <org.ops4j.pax.url.mvn.localRepository>${settings.localRepository}</org.ops4j.pax.url.mvn.localRepository>
99                     </systemPropertyVariables>
100                 </configuration>
101                 <executions>
102                     <execution>
103                         <phase>test</phase>
104                         <goals>
105                             <goal>test</goal>
106                         </goals>
107                     </execution>
108                 </executions>
109             </plugin>
110         </plugins>
111     </build>
112
113 </project>