Merge "OPNFLWPLUG-929 : Remove deprecated guava library"
[openflowplugin.git] / applications / southbound-cli / 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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>applications</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9     </parent>
10     <groupId>org.opendaylight.openflowplugin.applications</groupId>
11     <artifactId>southbound-cli</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>junit</groupId>
17             <artifactId>junit</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal-binding-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.openflowplugin</groupId>
25             <artifactId>openflowplugin-common</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.openflowplugin</groupId>
29             <artifactId>openflowplugin-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-common</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>sal-common-util</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-singleton-common-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.openflowplugin.model</groupId>
45             <artifactId>model-flow-service</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.mockito</groupId>
49             <artifactId>mockito-core</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-broker-impl</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-broker-impl</artifactId>
60             <scope>test</scope>
61             <type>test-jar</type>
62         </dependency>
63         <dependency>
64             <groupId>org.apache.karaf.shell</groupId>
65             <artifactId>org.apache.karaf.shell.console</artifactId>
66             <scope>provided</scope>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.maven.plugins</groupId>
74                 <artifactId>maven-checkstyle-plugin</artifactId>
75                 <configuration>
76                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
77                 </configuration>
78             </plugin>
79             <plugin>
80                 <groupId>org.apache.felix</groupId>
81                 <artifactId>maven-bundle-plugin</artifactId>
82             </plugin>
83         </plugins>
84     </build>
85
86 </project>