Freeze upstream versions
[genius.git] / idmanager / idmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016, 2018 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.10.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>idmanager-impl</artifactId>
21   <version>0.10.0-SNAPSHOT</version>
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   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.genius</groupId>
30       <artifactId>idmanager-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.genius</groupId>
34       <artifactId>lockmanager-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.serviceutils</groupId>
38       <artifactId>rpc-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>mdsalutil-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.daexim</groupId>
46       <artifactId>daexim-model</artifactId>
47       <version>1.9.0</version>
48     </dependency>
49     <dependency>
50       <groupId>javax.inject</groupId>
51       <artifactId>javax.inject</artifactId>
52       <scope>provided</scope>
53       <optional>true</optional>
54     </dependency>
55     <dependency>
56       <groupId>javax.annotation</groupId>
57       <artifactId>javax.annotation-api</artifactId>
58       <optional>true</optional>
59     </dependency>
60     <dependency>
61       <groupId>org.apache.aries.blueprint</groupId>
62       <artifactId>blueprint-maven-plugin-annotation</artifactId>
63       <optional>true</optional>
64     </dependency>
65
66     <!-- Testing Dependencies -->
67     <dependency>
68       <groupId>org.opendaylight.genius</groupId>
69       <artifactId>testutils</artifactId>
70       <version>${project.version}</version>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.genius</groupId>
75       <artifactId>lockmanager-impl</artifactId>
76       <version>${project.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.genius</groupId>
81       <artifactId>mdsalutil-testutils</artifactId>
82       <version>${project.version}</version>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87   <build>
88     <pluginManagement>
89       <plugins>
90         <plugin>
91           <artifactId>maven-checkstyle-plugin</artifactId>
92           <dependencies>
93             <dependency>
94               <groupId>org.opendaylight.genius</groupId>
95               <artifactId>checkstyle</artifactId>
96               <version>${project.version}</version>
97             </dependency>
98           </dependencies>
99           <executions>
100             <execution>
101               <id>check-databroker</id>
102               <goals>
103                 <goal>check</goal>
104               </goals>
105               <phase>process-sources</phase>
106               <configuration>
107                 <configLocation>databroker-checks.xml</configLocation>
108                 <includeResources>false</includeResources>
109                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
110                 <includeTestResources>false</includeTestResources>
111                 <sourceDirectories>
112                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
113                 </sourceDirectories>
114                 <failsOnError>true</failsOnError>
115                 <consoleOutput>true</consoleOutput>
116               </configuration>
117             </execution>
118           </executions>
119         </plugin>
120       </plugins>
121     </pluginManagement>
122     <plugins>
123       <plugin>
124         <groupId>org.eclipse.xtend</groupId>
125         <artifactId>xtend-maven-plugin</artifactId>
126       </plugin>
127       <plugin>
128         <groupId>org.apache.aries.blueprint</groupId>
129         <artifactId>blueprint-maven-plugin</artifactId>
130         <configuration>
131           <scanPaths>org.opendaylight.genius.idmanager</scanPaths>
132         </configuration>
133       </plugin>
134     </plugins>
135   </build>
136 </project>