Merge "Fix for bugs 446 and 456"
[controller.git] / opendaylight / config / config-persister-api / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <artifactId>config-subsystem</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.5-SNAPSHOT</version>
7         <relativePath>..</relativePath>
8     </parent>
9     <artifactId>config-persister-api</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>${project.groupId}</groupId>
16             <artifactId>config-util</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>com.google.guava</groupId>
20             <artifactId>guava</artifactId>
21         </dependency>
22     </dependencies>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.maven.plugins</groupId>
28                 <artifactId>maven-jar-plugin</artifactId>
29             </plugin>
30             <plugin>
31                 <groupId>org.apache.felix</groupId>
32                 <artifactId>maven-bundle-plugin</artifactId>
33                 <configuration>
34                     <instructions>
35                         <Export-Package>
36                             org.opendaylight.controller.config.persist.api,
37                             org.opendaylight.controller.config.persist.api.storage,
38                         </Export-Package>
39                     </instructions>
40                 </configuration>
41             </plugin>
42         </plugins>
43     </build>
44 </project>