aef0dd820747456fb9c46adc528119b6729de875
[genius.git] / resourcemanager / resourcemanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.  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
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   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.6.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>resourcemanager-impl</artifactId>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.genius</groupId>
31         <artifactId>genius-artifacts</artifactId>
32         <version>${project.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>resourcemanager-api</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.genius</groupId>
47       <artifactId>idmanager-api</artifactId>
48         <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.genius</groupId>
52       <artifactId>mdsalutil-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>javax.inject</groupId>
56       <artifactId>javax.inject</artifactId>
57     </dependency>
58
59     <!-- Testing Dependencies -->
60     <dependency>
61       <groupId>org.opendaylight.genius</groupId>
62       <artifactId>lockmanager-impl</artifactId>
63       <version>${project.version}</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.genius</groupId>
68       <artifactId>idmanager-impl</artifactId>
69       <version>${project.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.genius</groupId>
74       <artifactId>testutils</artifactId>
75       <version>${project.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.genius</groupId>
80       <artifactId>mdsalutil-testutils</artifactId>
81       <version>${project.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <pluginManagement>
88       <plugins>
89         <plugin>
90           <artifactId>maven-checkstyle-plugin</artifactId>
91           <dependencies>
92             <dependency>
93               <groupId>org.opendaylight.genius</groupId>
94               <artifactId>checkstyle</artifactId>
95               <version>${project.version}</version>
96             </dependency>
97           </dependencies>
98           <executions>
99             <execution>
100               <id>check-databroker</id>
101               <goals>
102                 <goal>check</goal>
103               </goals>
104               <phase>process-sources</phase>
105               <configuration>
106                 <configLocation>databroker-checks.xml</configLocation>
107                 <includeResources>false</includeResources>
108                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
109                 <includeTestResources>false</includeTestResources>
110                 <sourceDirectories>
111                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
112                 </sourceDirectories>
113                 <failsOnError>true</failsOnError>
114                 <consoleOutput>true</consoleOutput>
115               </configuration>
116             </execution>
117           </executions>
118         </plugin>
119       </plugins>
120     </pluginManagement>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.aries.blueprint</groupId>
124         <artifactId>blueprint-maven-plugin</artifactId>
125       </plugin>
126     </plugins>
127   </build>
128 </project>