Renamed artifacts to reflect the project's name.
[unimgr.git] / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.unimgr</groupId>
20   <artifactId>unimgr-it</artifactId>
21   <version>0.0.1-SNAPSHOT</version>
22   <packaging>jar</packaging>
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>${project.groupId}</groupId>
27         <artifactId>unimgr-artifacts</artifactId>
28         <version>${project.version}</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>config-artifacts</artifactId>
35         <version>0.3.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39       <dependency>
40         <groupId>org.opendaylight.controller</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>${mdsal.version}</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48   <dependencies>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-common-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>unimgr-features</artifactId>
60       <classifier>features</classifier>
61       <type>xml</type>
62     </dependency>
63   </dependencies>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-checkstyle-plugin</artifactId>
70         <configuration>
71           <configLocation>${project.basedir}/../checkstyle.xml</configLocation>
72           <failsOnError>true</failsOnError>
73           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
74           <excludes>**/yang/</excludes>
75         </configuration>
76       </plugin>
77     </plugins>
78   </build>
79
80 </project>