Changed groupId for FCAPS to org.opendaylight.controller
[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     </dependencies>
27
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.apache.felix</groupId>
32                 <artifactId>maven-bundle-plugin</artifactId>
33                 <configuration>
34                     <instructions>
35                         <Import-Package>
36                             javax.management,
37                             org.opendaylight.protocol.concepts
38                         </Import-Package>
39                         <Export-Package>
40                             org.opendaylight.controller.config.api,
41                             org.opendaylight.controller.config.api.annotations,
42                             org.opendaylight.controller.config.spi,
43                             org.opendaylight.controller.config.api.jmx,
44                             org.opendaylight.controller.config.api.jmx.constants,
45                             org.opendaylight.controller.config.api.runtime,
46                         </Export-Package>
47                     </instructions>
48                 </configuration>
49             </plugin>
50         </plugins>
51     </build>
52 </project>