Refactoring of cisco-xr-driver and impl modules.
[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.6.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.2.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         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>unimgr-impl</artifactId>
52             <version>${project.version}</version>
53             <type>test-jar</type>
54             <scope>test</scope>
55         </dependency>
56
57         <!-- Cisco -->
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>cisco-xrmodels</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63
64         <!-- dependencies to use AbstractDataBrokerTest -->
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>sal-binding-broker-impl</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-binding-broker-impl</artifactId>
73             <type>test-jar</type>
74             <scope>test</scope>
75         </dependency>
76         <!-- Testing Dependencies -->
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82
83         <dependency>
84             <groupId>org.mockito</groupId>
85             <artifactId>mockito-core</artifactId>
86             <scope>test</scope>
87         </dependency>
88
89         <dependency>
90             <groupId>org.powermock</groupId>
91             <artifactId>powermock-core</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.powermock</groupId>
96             <artifactId>powermock-module-junit4</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.powermock</groupId>
101             <artifactId>powermock-api-mockito</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.powermock</groupId>
106             <artifactId>powermock-api-support</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.powermock</groupId>
111             <artifactId>powermock-reflect</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.mdsal.model</groupId>
116             <artifactId>ietf-yang-types-20130715</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>ch.qos.logback</groupId>
120             <artifactId>logback-core</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>ch.qos.logback</groupId>
124             <artifactId>logback-classic</artifactId>
125         </dependency>
126     </dependencies>
127 </project>