Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / opendaylight / config / config-persister-api / 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.4.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-persister-api</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>config-util</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>com.google.guava</groupId>
21       <artifactId>guava</artifactId>
22     </dependency>
23   </dependencies>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30         <configuration>
31           <instructions>
32             <Export-Package>org.opendaylight.controller.config.persist.api,
33                             org.opendaylight.controller.config.persist.api.storage,</Export-Package>
34           </instructions>
35         </configuration>
36       </plugin>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-jar-plugin</artifactId>
40       </plugin>
41     </plugins>
42   </build>
43 </project>