Bump versions by x.y.(z+1)
[odlparent.git] / features-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>1.8.3-SNAPSHOT</version>
17         <relativePath>../bundle-parent</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>features-test</artifactId>
22     <packaging>bundle</packaging>
23     <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25     <dependencies>
26         <!-- Dependencies for pax exam karaf container -->
27         <dependency>
28             <groupId>org.ops4j.pax.exam</groupId>
29             <artifactId>pax-exam-container-karaf</artifactId>
30             <scope>compile</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.ops4j.pax.exam</groupId>
34             <artifactId>pax-exam-junit4</artifactId>
35             <scope>compile</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.ops4j.pax.exam</groupId>
39             <artifactId>pax-exam</artifactId>
40             <scope>compile</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.ops4j.pax.url</groupId>
44             <artifactId>pax-url-aether</artifactId>
45             <scope>compile</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.maven.wagon</groupId>
49             <artifactId>wagon-http</artifactId>
50             <version>2.10</version>
51             <scope>compile</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.karaf.features</groupId>
55             <artifactId>standard</artifactId>
56             <version>${karaf.version}</version>
57             <classifier>features</classifier>
58             <type>xml</type>
59         </dependency>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>compile</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.apache.karaf.deployer</groupId>
67             <artifactId>org.apache.karaf.deployer.blueprint</artifactId>
68             <version>${karaf.version}</version>
69             <scope>compile</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.apache.karaf.deployer</groupId>
73             <artifactId>org.apache.karaf.deployer.features</artifactId>
74             <version>${karaf.version}</version>
75             <scope>compile</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.apache.karaf.deployer</groupId>
79             <artifactId>org.apache.karaf.deployer.spring</artifactId>
80             <version>${karaf.version}</version>
81             <scope>compile</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.ops4j.pax.url</groupId>
85             <artifactId>pax-url-wrap</artifactId>
86             <scope>compile</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.slf4j</groupId>
90             <artifactId>slf4j-api</artifactId>
91             <scope>compile</scope>
92         </dependency>
93         <dependency>
94             <groupId>com.google.guava</groupId>
95             <artifactId>guava</artifactId>
96             <scope>compile</scope>
97         </dependency>
98         <dependency>
99             <groupId>javax.inject</groupId>
100             <artifactId>javax.inject</artifactId>
101             <scope>compile</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.osgi</groupId>
105             <artifactId>org.osgi.core</artifactId>
106             <scope>compile</scope>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>bundles-test</artifactId>
111             <version>${project.version}</version>
112         </dependency>
113     </dependencies>
114
115     <build>
116         <resources>
117             <resource>
118                 <directory>src/main/resources</directory>
119                 <filtering>true</filtering>
120             </resource>
121         </resources>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.felix</groupId>
125                 <artifactId>maven-bundle-plugin</artifactId>
126             </plugin>
127             <plugin>
128                 <artifactId>maven-checkstyle-plugin</artifactId>
129                 <configuration>
130                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
131                 </configuration>
132                 <executions>
133                     <execution>
134                         <id>check-license</id>
135                         <configuration>
136                             <excludes>
137                                 <!-- Skip Apache Licensed files -->
138                                 org/opendaylight/odlparent/featuretest/CustomBundleUrlStreamHandlerFactory.java
139                             </excludes>
140                         </configuration>
141                     </execution>
142                 </executions>
143             </plugin>
144         </plugins>
145     </build>
146
147   <!--
148     Maven Site Configuration
149
150     The following configuration is necessary for maven-site-plugin to
151     correctly identify the correct deployment path for OpenDaylight Maven
152     sites.
153   -->
154   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
155
156   <distributionManagement>
157     <site>
158       <id>opendaylight-site</id>
159       <url>${nexus.site.url}/${project.artifactId}/</url>
160     </site>
161   </distributionManagement>
162 </project>