code cleanup
[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.mdsal</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>5.0.10</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20       <odlparent.checkstyle.enforce>true</odlparent.checkstyle.enforce>
21       <odlparent.spotbugs.enforce>true</odlparent.spotbugs.enforce>
22         <powermock.version>2.0.0-beta.5</powermock.version>
23         <mdsal.version>5.0.10</mdsal.version>
24         <netconf.version>1.8.1</netconf.version>
25     </properties>
26
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.opendaylight.unimgr</groupId>
29     <artifactId>unimgr-cisco-xr-driver</artifactId>
30     <version>0.6.0-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32     <!-- <name> formatting is used by autorelease to parse and notify projects on
33          build failure. Please do not modify this unless you have a good reason. -->
34     <name>ODL :: unimgr :: ${project.artifactId}</name>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.maven.plugins</groupId>
40                 <artifactId>maven-compiler-plugin</artifactId>
41                 <configuration>
42                     <source>1.8</source>
43                     <target>1.8</target>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48
49     <dependencies>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>unimgr-impl</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>unimgr-impl</artifactId>
59             <version>${project.version}</version>
60             <type>test-jar</type>
61             <scope>test</scope>
62         </dependency>
63
64         <!-- Cisco -->
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>cisco-xrmodels</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70
71         <!-- dependencies to use AbstractConcurrentDataBrokerTest -->
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-binding-dom-adapter</artifactId>
75             <version>${mdsal.version}</version>
76             <classifier>tests</classifier>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-binding-dom-adapter</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.netconf</groupId>
86             <artifactId>netconf-topology</artifactId>
87             <version>${netconf.version}</version>
88         </dependency>
89
90         <!-- Testing Dependencies -->
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96
97         <dependency>
98             <groupId>org.mockito</groupId>
99             <artifactId>mockito-core</artifactId>
100             <scope>test</scope>
101         </dependency>
102
103         <dependency>
104             <groupId>org.powermock</groupId>
105             <artifactId>powermock-core</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-module-junit4</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.powermock</groupId>
115             <artifactId>powermock-api-mockito2</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.powermock</groupId>
120             <artifactId>powermock-api-support</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.powermock</groupId>
125             <artifactId>powermock-reflect</artifactId>
126             <scope>test</scope>
127         </dependency>
128     <dependency>
129         <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
130         <artifactId>rfc6991</artifactId>
131     </dependency>
132     </dependencies>
133 </project>