Initial code drop of netconf protocol implementation
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <artifactId>config-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.2.1-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>config-api</artifactId>
13     <name>${project.artifactId}</name>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>com.google.code.findbugs</groupId>
19             <artifactId>jsr305</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.bgpcep</groupId>
23             <artifactId>concepts</artifactId>
24             <version>0.2.0-SNAPSHOT</version>
25         </dependency>
26         <dependency>
27             <groupId>org.osgi</groupId>
28             <artifactId>org.osgi.core</artifactId>
29         </dependency>
30     </dependencies>
31
32     <build>
33         <plugins>
34             <plugin>
35                 <groupId>org.apache.felix</groupId>
36                 <artifactId>maven-bundle-plugin</artifactId>
37                 <configuration>
38                     <instructions>
39                         <Import-Package>
40                             javax.management,
41                             org.opendaylight.protocol.concepts,
42                             org.osgi.framework,
43                         </Import-Package>
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.controller.config.stat,
52                         </Export-Package>
53                     </instructions>
54                 </configuration>
55             </plugin>
56         </plugins>
57     </build>
58 </project>