code cleanup
[unimgr.git] / features / odl-unimgr-cisco-xr-driver / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved. 
3   This program and the accompanying materials are made available under the 
4   terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5   and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <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">
7   <parent>
8     <groupId>org.opendaylight.odlparent</groupId>
9     <artifactId>single-feature-parent</artifactId>
10     <version>6.0.6</version>
11     <relativePath/>
12   </parent>
13   <groupId>org.opendaylight.unimgr</groupId>
14   <artifactId>odl-unimgr-cisco-xr-driver</artifactId>
15   <version>0.6.0-SNAPSHOT</version>
16   <packaging>feature</packaging>
17
18   <name>ODL :: unimgr :: ${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20
21   <properties>
22     <netconf.version>1.8.1</netconf.version>
23   </properties>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.unimgr</groupId>
28       <artifactId>odl-unimgr</artifactId>
29       <version>${project.version}</version>
30       <type>xml</type>
31       <classifier>features</classifier>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.unimgr</groupId>
35       <artifactId>cisco-xrmodels</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.unimgr</groupId>
40       <artifactId>unimgr-cisco-xr-driver</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43
44     <!-- netconf dependencies -->
45     <dependency>
46       <groupId>org.opendaylight.netconf</groupId>
47       <artifactId>odl-netconf-topology</artifactId>
48       <version>${netconf.version}</version>
49       <type>xml</type>
50       <classifier>features</classifier>
51     </dependency>
52     <!-- 
53     <dependency>
54       <groupId>org.opendaylight.netconf</groupId>
55       <artifactId>odl-netconf-connector-ssh</artifactId>
56       <version>${netconf.version}</version>
57       <type>xml</type>
58       <classifier>features</classifier>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.netconf</groupId>
62       <artifactId>odl-netconf-tcp</artifactId>
63       <version>${netconf.version}</version>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67  -->
68   </dependencies>
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-surefire-plugin</artifactId>
74         <configuration>
75           <excludes>
76             <exclude>%regex[.*SingleFeatureTest.*]</exclude>
77           </excludes>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82 </project>