Update dependency on OSGi compendium
[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 © 2014, 2017 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>5.0.0-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.osgi</groupId>
49             <!-- required due to https://jira.opendaylight.org/browse/ODLPARENT-136 -->
50             <artifactId>osgi.cmpn</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.karaf.features</groupId>
54             <artifactId>standard</artifactId>
55             <version>${karaf.version}</version>
56             <classifier>features</classifier>
57             <type>xml</type>
58         </dependency>
59         <dependency>
60             <groupId>junit</groupId>
61             <artifactId>junit</artifactId>
62             <scope>compile</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.karaf.deployer</groupId>
66             <artifactId>org.apache.karaf.deployer.blueprint</artifactId>
67             <version>${karaf.version}</version>
68             <scope>compile</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.apache.karaf.deployer</groupId>
72             <artifactId>org.apache.karaf.deployer.features</artifactId>
73             <version>${karaf.version}</version>
74             <scope>compile</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.ops4j.pax.url</groupId>
78             <artifactId>pax-url-wrap</artifactId>
79             <scope>compile</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.slf4j</groupId>
83             <artifactId>slf4j-api</artifactId>
84             <scope>compile</scope>
85         </dependency>
86         <dependency>
87             <groupId>javax.inject</groupId>
88             <artifactId>javax.inject</artifactId>
89             <scope>compile</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.osgi</groupId>
93             <artifactId>org.osgi.core</artifactId>
94             <scope>compile</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.odlparent</groupId>
98             <artifactId>opendaylight-karaf-empty</artifactId>
99             <type>zip</type>
100             <exclusions>
101               <exclusion>
102                 <groupId>*</groupId>
103                 <artifactId>*</artifactId>
104               </exclusion>
105             </exclusions>
106         </dependency>
107         <!-- BEWARE of adding additional dependencies here...
108              It will cause weird issues e.g. in integration/distribution/features/repos/distribution -->
109         <dependency>
110           <groupId>org.opendaylight.odlparent</groupId>
111           <artifactId>karaf-util</artifactId>
112           <version>${project.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>bundles4-test</artifactId>
117             <version>${project.version}</version>
118             <scope>provided</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.apache.karaf.bundle</groupId>
122             <artifactId>org.apache.karaf.bundle.core</artifactId>
123             <version>${karaf.version}</version>
124             <scope>provided</scope>
125         </dependency>
126         <dependency>
127           <groupId>com.google.guava</groupId>
128           <artifactId>guava</artifactId>
129           <scope>compile</scope>
130         </dependency>
131         <!-- The following, which are just transitive dependencies of bundles4-test,
132              have to be repeated here so that the Embed-Dependency below for maven-bundle-plugin works: -->
133         <dependency>
134           <groupId>org.hamcrest</groupId>
135           <artifactId>hamcrest</artifactId>
136           <scope>provided</scope>
137         </dependency>
138         <dependency>
139           <groupId>org.awaitility</groupId>
140           <artifactId>awaitility</artifactId>
141           <scope>provided</scope>
142           <exclusions>
143             <exclusion>
144               <groupId>cglib</groupId>
145               <artifactId>cglib-nodep</artifactId>
146             </exclusion>
147             <exclusion>
148               <groupId>org.objenesis</groupId>
149               <artifactId>objenesis</artifactId>
150             </exclusion>
151           </exclusions>
152         </dependency>
153         <!-- Real <scope>test dependencies, just for SingleFeatureTestUnitTest -->
154         <dependency>
155           <groupId>com.google.truth</groupId>
156           <artifactId>truth</artifactId>
157           <scope>test</scope>
158         </dependency>
159     </dependencies>
160
161     <build>
162         <resources>
163             <resource>
164                 <directory>src/main/resources</directory>
165                 <filtering>true</filtering>
166             </resource>
167         </resources>
168         <plugins>
169             <plugin>
170                 <groupId>org.apache.felix</groupId>
171                 <artifactId>maven-bundle-plugin</artifactId>
172                 <configuration>
173                   <instructions>
174                     <Embed-Dependency>bundles4-test;inline=true,awaitility;inline=true,hamcrest;inline=true</Embed-Dependency>
175                     <!-- same as in bundles4-test/pom.xml: -->
176                     <Import-Package>!net.sf.cglib.proxy,!org.objenesis,*</Import-Package>
177                   </instructions>
178                 </configuration>
179             </plugin>
180             <plugin>
181                 <artifactId>maven-checkstyle-plugin</artifactId>
182                 <configuration>
183                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
184                 </configuration>
185                 <executions>
186                     <execution>
187                         <id>check-license</id>
188                         <configuration>
189                             <excludes>
190                                 <!-- Skip Apache Licensed files -->
191                                 org/opendaylight/odlparent/featuretest/CustomBundleUrlStreamHandlerFactory.java
192                             </excludes>
193                         </configuration>
194                     </execution>
195                 </executions>
196             </plugin>
197         </plugins>
198     </build>
199
200 </project>