Merge dev/fluorine work across to master
[unimgr.git] / features / odl-unimgr / 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</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     <controller.mdsal.version>1.8.0-SNAPSHOT</controller.mdsal.version>
23   </properties>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.maven.plugins</groupId>
29         <artifactId>maven-surefire-plugin</artifactId>
30         <configuration>
31           <excludes>
32             <exclude>**/*SingleFeatureTest.java</exclude>
33           </excludes>
34         </configuration>
35       </plugin>
36     </plugins>
37   </build>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>odl-mdsal-broker</artifactId>
43       <version>${controller.mdsal.version}</version>
44       <type>xml</type>
45       <classifier>features</classifier>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.unimgr</groupId>
49       <artifactId>unimgr-impl</artifactId>
50       <version>${project.version}</version>
51       <exclusions>
52         <exclusion>
53           <groupId>ch.qos.logback</groupId>
54           <artifactId>logback-core</artifactId>
55         </exclusion>
56         <exclusion>
57           <groupId>ch.qos.logback</groupId>
58           <artifactId>logback-classic</artifactId>
59         </exclusion>
60       </exclusions>
61     </dependency>
62   </dependencies>
63 </project>