Use constants defined in southbound-impl
[unimgr.git] / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <properties>
19   <ovsdb.version>1.2.1-SNAPSHOT</ovsdb.version>
20   <powermock.version>1.5.2</powermock.version>
21   </properties>
22
23   <modelVersion>4.0.0</modelVersion>
24   <groupId>org.opendaylight.unimgr</groupId>
25   <artifactId>unimgr-impl</artifactId>
26   <version>0.0.1-SNAPSHOT</version>
27   <packaging>bundle</packaging>
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>unimgr-api</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34
35 <!--     OVSDB dependency -->
36     <dependency>
37       <groupId>org.opendaylight.ovsdb</groupId>
38       <artifactId>southbound-impl</artifactId>
39       <version>${ovsdb.version}</version>
40     </dependency>
41
42     <!-- Testing Dependencies -->
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46       <scope>test</scope>
47     </dependency>
48
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-all</artifactId>
52       <scope>test</scope>
53     </dependency>
54
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-core</artifactId>
58       <version>${powermock.version}</version>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.powermock</groupId>
63       <artifactId>powermock-module-junit4</artifactId>
64       <version>${powermock.version}</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.powermock</groupId>
69       <artifactId>powermock-api-mockito</artifactId>
70       <version>${powermock.version}</version>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.powermock</groupId>
75       <artifactId>powermock-api-support</artifactId>
76       <version>${powermock.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-reflect</artifactId>
82       <version>${powermock.version}</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.mdsal.model</groupId>
87       <artifactId>ietf-yang-types-20130715</artifactId>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-checkstyle-plugin</artifactId>
96         <configuration>
97           <configLocation>${project.basedir}/../checkstyle.xml</configLocation>
98           <failsOnError>true</failsOnError>
99           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
100           <excludes>**/yang/</excludes>
101         </configuration>
102       </plugin>
103     </plugins>
104   </build>
105
106 </project>