Merge "Fixed publishDataChangeEvent in 2phase commit"
[controller.git] / opendaylight / netconf / netconf-mapping-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
4     <parent>
5         <artifactId>netconf-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.4-SNAPSHOT</version>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>netconf-mapping-api</artifactId>
11     <name>${project.artifactId}</name>
12
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>netconf-api</artifactId>
19         </dependency>
20
21         <dependency>
22             <groupId>com.google.guava</groupId>
23             <artifactId>guava</artifactId>
24         </dependency>
25     </dependencies>
26
27
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.apache.felix</groupId>
32                 <artifactId>maven-bundle-plugin</artifactId>
33                 <configuration>
34                     <instructions>
35                         <Private-Package>
36                         </Private-Package>
37                         <Import-Package>
38                             com.google.common.base,
39                             org.opendaylight.controller.netconf.api,
40                             org.w3c.dom
41                         </Import-Package>
42                         <Export-Package>
43                             org.opendaylight.controller.netconf.mapping.api,
44                         </Export-Package>
45                     </instructions>
46                 </configuration>
47             </plugin>
48         </plugins>
49     </build>
50 </project>