Merge "creating a default subnet"
[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.3-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>config-api</artifactId>
13     <name>${project.artifactId}</name>
14     <packaging>bundle</packaging>
15
16
17     <dependencies>
18         <dependency>
19             <groupId>com.google.code.findbugs</groupId>
20             <artifactId>jsr305</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.osgi</groupId>
24             <artifactId>org.osgi.core</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>concepts</artifactId>
29             <version>${opendaylight.yangtools.version}</version>
30         </dependency>
31     </dependencies>
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.apache.felix</groupId>
37                 <artifactId>maven-bundle-plugin</artifactId>
38                 <configuration>
39                     <instructions>
40                         <Import-Package>
41                             javax.management,
42                             org.opendaylight.yangtools.concepts,
43                             org.osgi.framework,
44                         </Import-Package>
45                         <Export-Package>
46                             org.opendaylight.controller.config.api,
47                             org.opendaylight.controller.config.api.annotations,
48                             org.opendaylight.controller.config.spi,
49                             org.opendaylight.controller.config.api.jmx,
50                             org.opendaylight.controller.config.api.jmx.constants,
51                             org.opendaylight.controller.config.api.runtime,
52                         </Export-Package>
53                     </instructions>
54                 </configuration>
55             </plugin>
56         </plugins>
57     </build>
58 </project>