Merge "Remove unnecessary warn log from config subsystem"
[controller.git] / opendaylight / config / shutdown-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <parent>
4         <artifactId>config-plugin-parent</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.4-SNAPSHOT</version>
7         <relativePath>../config-plugin-parent</relativePath>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10     <packaging>bundle</packaging>
11     <artifactId>shutdown-api</artifactId>
12
13     <dependencies>
14         <dependency>
15             <groupId>com.google.guava</groupId>
16             <artifactId>guava</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>config-api</artifactId>
21         </dependency>
22     </dependencies>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.felix</groupId>
28                 <artifactId>maven-bundle-plugin</artifactId>
29                 <configuration>
30                     <instructions>
31                         <Export-Package>
32                             org.opendaylight.controller.config.shutdown,
33                             org.opendaylight.controller.config.yang.shutdown,
34                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.shutdown.rev131218
35                         </Export-Package>
36                     </instructions>
37                 </configuration>
38             </plugin>
39             <plugin>
40                 <groupId>org.opendaylight.yangtools</groupId>
41                 <artifactId>yang-maven-plugin</artifactId>
42             </plugin>
43         </plugins>
44     </build>
45
46 </project>