Merge "Fixed Karaf Distribution Archetype add dependent bundles"
[controller.git] / opendaylight / config / config-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-util</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <!-- test dependencies -->
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24       <scope>test</scope>
25     </dependency>
26   <dependency>
27     <groupId>org.opendaylight.yangtools</groupId>
28     <artifactId>mockito-configuration</artifactId>
29   </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <!-- test jar -->
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-jar-plugin</artifactId>
38       </plugin>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <configuration>
43           <instructions>
44             <Export-Package>org.opendaylight.controller.config.util</Export-Package>
45           </instructions>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50
51 </project>