Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / config / yang-store-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.4-SNAPSHOT</version>
7         <relativePath>..</relativePath>
8     </parent>
9     <artifactId>yang-store-api</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>${project.groupId}</groupId>
16             <artifactId>yang-jmx-generator</artifactId>
17         </dependency>
18     </dependencies>
19
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.apache.felix</groupId>
24                 <artifactId>maven-bundle-plugin</artifactId>
25                 <configuration>
26                     <instructions>
27                         <Export-Package>
28                             org.opendaylight.controller.config.yang.store.api,
29                         </Export-Package>
30                     </instructions>
31                 </configuration>
32             </plugin>
33         </plugins>
34     </build>
35
36 </project>