e33580c3aa94968e744348a36beceb204b04accc
[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 <!--     OVSDB dependency -->
35     <dependency>
36       <groupId>org.opendaylight.ovsdb</groupId>
37       <artifactId>southbound-api</artifactId>
38       <version>${ovsdb.version}</version>
39     </dependency>
40
41     <!-- Testing Dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>org.mockito</groupId>
50       <artifactId>mockito-all</artifactId>
51       <scope>test</scope>
52     </dependency>
53
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-core</artifactId>
57       <version>${powermock.version}</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-module-junit4</artifactId>
63       <version>${powermock.version}</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.powermock</groupId>
68       <artifactId>powermock-api-mockito</artifactId>
69       <version>${powermock.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.powermock</groupId>
74       <artifactId>powermock-api-support</artifactId>
75       <version>${powermock.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-reflect</artifactId>
81       <version>${powermock.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91         <configuration>
92           <configLocation>${project.basedir}/../checkstyle.xml</configLocation>
93           <failsOnError>true</failsOnError>
94           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
95           <excludes>**/yang/</excludes>
96         </configuration>
97       </plugin>
98     </plugins>
99   </build>
100
101 </project>