Merge "Bug 2131 - NPE when starting controller"
[controller.git] / opendaylight / config / shutdown-impl / 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   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-plugin-parent</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8     <relativePath>../config-plugin-parent</relativePath>
9   </parent>
10   <artifactId>shutdown-impl</artifactId>
11   <packaging>bundle</packaging>
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     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>shutdown-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>mockito-configuration</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>config-manager</artifactId>
33       <type>test-jar</type>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>config-manager</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>config-util</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.apache.felix</groupId>
52         <artifactId>maven-bundle-plugin</artifactId>
53       </plugin>
54       <plugin>
55         <groupId>org.opendaylight.yangtools</groupId>
56         <artifactId>yang-maven-plugin</artifactId>
57       </plugin>
58     </plugins>
59   </build>
60
61 </project>