10c9fad07ef2d1a55cdabd4101d4e668ba9698db
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <artifactId>config-subsystem</artifactId>
9         <groupId>org.opendaylight.controller</groupId>
10         <version>0.2.3-SNAPSHOT</version>
11     </parent>
12
13     <artifactId>config-api</artifactId>
14     <name>${project.artifactId}</name>
15     <packaging>bundle</packaging>
16
17
18     <dependencies>
19         <dependency>
20             <groupId>com.google.code.findbugs</groupId>
21             <artifactId>jsr305</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.osgi</groupId>
25             <artifactId>org.osgi.core</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>yang-binding</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-common</artifactId>
34         </dependency>
35     </dependencies>
36
37     <build>
38         <plugins>
39             <plugin>
40                 <groupId>org.apache.felix</groupId>
41                 <artifactId>maven-bundle-plugin</artifactId>
42                 <configuration>
43                     <instructions>
44                         <Export-Package>
45                             org.opendaylight.controller.config.api,
46                             org.opendaylight.controller.config.api.annotations,
47                             org.opendaylight.controller.config.spi,
48                             org.opendaylight.controller.config.api.jmx,
49                             org.opendaylight.controller.config.api.jmx.constants,
50                             org.opendaylight.controller.config.api.runtime,
51                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.rpc.context.rev130617.*,
52                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.rev130405.*,
53                         </Export-Package>
54                     </instructions>
55                 </configuration>
56             </plugin>
57             <plugin>
58                 <groupId>org.opendaylight.yangtools</groupId>
59                 <artifactId>yang-maven-plugin</artifactId>
60             </plugin>
61         </plugins>
62     </build>
63 </project>