Release Carbon
[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.1-Carbon</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.1-Carbon</version>
28     <packaging>bundle</packaging>
29     <!-- <name> formatting is used by autorelease to parse and notify projects on
30          build failure. Please do not modify this unless you have a good reason. -->
31     <name>ODL :: unimgr :: ${project.artifactId}</name>
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.apache.maven.plugins</groupId>
37                 <artifactId>maven-compiler-plugin</artifactId>
38                 <configuration>
39                     <source>1.8</source>
40                     <target>1.8</target>
41                 </configuration>
42             </plugin>
43         </plugins>
44     </build>
45
46     <dependencies>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>unimgr-impl</artifactId>
50             <version>${project.version}</version>
51         </dependency>
52
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>unimgr-impl</artifactId>
56             <version>${project.version}</version>
57             <type>test-jar</type>
58             <scope>test</scope>
59         </dependency>
60
61         <!-- Cisco -->
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>cisco-xrmodels</artifactId>
65             <version>${project.version}</version>
66         </dependency>
67
68         <!-- dependencies to use AbstractDataBrokerTest -->
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-binding-broker-impl</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-binding-broker-impl</artifactId>
77             <type>test-jar</type>
78             <scope>test</scope>
79         </dependency>
80         <!-- Testing Dependencies -->
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84             <scope>test</scope>
85         </dependency>
86
87         <dependency>
88             <groupId>org.mockito</groupId>
89             <artifactId>mockito-core</artifactId>
90             <scope>test</scope>
91         </dependency>
92
93         <dependency>
94             <groupId>org.powermock</groupId>
95             <artifactId>powermock-core</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.powermock</groupId>
100             <artifactId>powermock-module-junit4</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.powermock</groupId>
105             <artifactId>powermock-api-mockito</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-api-support</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.powermock</groupId>
115             <artifactId>powermock-reflect</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.mdsal.model</groupId>
120             <artifactId>ietf-yang-types-20130715</artifactId>
121         </dependency>
122     </dependencies>
123 </project>