Merge dev/fluorine work across to master
[unimgr.git] / features / odl-unimgr-rest / 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>3.1.2</version>
11     <relativePath/>
12   </parent>
13   <groupId>org.opendaylight.unimgr</groupId>
14   <artifactId>odl-unimgr-rest</artifactId>
15   <version>0.4.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     <restconf.version>1.8.0-SNAPSHOT</restconf.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.netconf</groupId>
35       <artifactId>odl-restconf</artifactId>
36       <version>${restconf.version}</version>
37       <type>xml</type>
38       <classifier>features</classifier>
39     </dependency>
40   </dependencies>
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-surefire-plugin</artifactId>
46         <configuration>
47           <excludes>
48             <exclude>%regex[.*SingleFeatureTest.*]</exclude>
49           </excludes>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54 </project>