Release odlparent
[odlparent.git] / bundles4-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Red Hat, 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   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>bundle-parent</artifactId>
17     <version>13.0.7</version>
18     <relativePath>../bundle-parent</relativePath>
19   </parent>
20
21   <artifactId>bundles4-test</artifactId>
22   <packaging>bundle</packaging>
23   <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.odlparent</groupId>
28       <artifactId>bundles-test-lib</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.karaf.bundle</groupId>
32       <artifactId>org.apache.karaf.bundle.core</artifactId>
33       <version>${karaf.version}</version>
34       <scope>provided</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.hamcrest</groupId>
38       <artifactId>hamcrest</artifactId>
39       <scope>compile</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.awaitility</groupId>
43       <artifactId>awaitility</artifactId>
44       <scope>compile</scope>
45       <exclusions>
46         <exclusion>
47           <groupId>cglib</groupId>
48           <artifactId>cglib-nodep</artifactId>
49         </exclusion>
50         <exclusion>
51           <groupId>org.objenesis</groupId>
52           <artifactId>objenesis</artifactId>
53         </exclusion>
54       </exclusions>
55     </dependency>
56   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <configuration>
64           <instructions>
65             <Embed-Dependency>*;scope=compile</Embed-Dependency>
66             <Embed-Transitive>true</Embed-Transitive>
67             <Import-Package>!net.sf.cglib.proxy,!org.objenesis,*</Import-Package>
68             <_exportcontents>org.opendaylight.odlparent.bundlestest.lib.*</_exportcontents>
69           </instructions>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75 </project>