Rome hackathon work integrated onto boron.
[unimgr.git] / cisco-xr-driver / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>config-parent</artifactId>
15         <version>0.5.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20         <checkstyle.skip>true</checkstyle.skip>
21         <powermock.version>1.6.4</powermock.version>
22     </properties>
23
24     <modelVersion>4.0.0</modelVersion>
25     <groupId>org.opendaylight.unimgr</groupId>
26     <artifactId>unimgr-cisco-xr-driver</artifactId>
27     <version>0.1.0-SNAPSHOT</version>
28     <packaging>bundle</packaging>
29     <build>
30         <plugins>
31             <plugin>
32                 <groupId>org.apache.maven.plugins</groupId>
33                 <artifactId>maven-compiler-plugin</artifactId>
34                 <configuration>
35                     <source>1.8</source>
36                     <target>1.8</target>
37                 </configuration>
38             </plugin>
39         </plugins>
40     </build>
41
42     <dependencies>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>unimgr-impl</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48
49         <!-- Cisco -->
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>cisco-xrmodels</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55
56         <!-- Testing Dependencies -->
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60             <scope>test</scope>
61         </dependency>
62
63         <dependency>
64             <groupId>org.mockito</groupId>
65             <artifactId>mockito-all</artifactId>
66             <scope>test</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>org.powermock</groupId>
71             <artifactId>powermock-core</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.powermock</groupId>
76             <artifactId>powermock-module-junit4</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.powermock</groupId>
81             <artifactId>powermock-api-mockito</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-api-support</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.powermock</groupId>
91             <artifactId>powermock-reflect</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal.model</groupId>
96             <artifactId>ietf-yang-types-20130715</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>ch.qos.logback</groupId>
100             <artifactId>logback-core</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>ch.qos.logback</groupId>
104             <artifactId>logback-classic</artifactId>
105         </dependency>
106     </dependencies>
107 </project>