Merge "BugFix : Changes to get ping between two hosts to work"
[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"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>config-plugin-parent</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.3-SNAPSHOT</version>
9         <relativePath>../config-plugin-parent</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12     <packaging>bundle</packaging>
13     <artifactId>shutdown-impl</artifactId>
14
15     <dependencies>
16         <dependency>
17             <groupId>com.google.guava</groupId>
18             <artifactId>guava</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>config-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>shutdown-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>config-manager</artifactId>
31             <scope>test</scope>
32             <type>test-jar</type>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>config-manager</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>config-util</artifactId>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.bgpcep</groupId>
46             <artifactId>mockito-configuration</artifactId>
47             <scope>test</scope>
48         </dependency>
49     </dependencies>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56             </plugin>
57             <plugin>
58                 <groupId>org.opendaylight.yangtools</groupId>
59                 <artifactId>yang-maven-plugin</artifactId>
60             </plugin>
61         </plugins>
62     </build>
63
64 </project>