Drop Xtend Equinox Common overrides
[genius.git] / idmanager / idmanager-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" 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.6.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.6.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   <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>idmanager-api</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.genius</groupId>
47       <artifactId>lockmanager-api</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.serviceutils</groupId>
52       <artifactId>tools-api</artifactId>
53       <version>0.3.0-SNAPSHOT</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.genius</groupId>
57       <artifactId>mdsalutil-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.daexim</groupId>
61       <artifactId>daexim-model</artifactId>
62       <version>1.5.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>javax.inject</groupId>
66       <artifactId>javax.inject</artifactId>
67       <optional>true</optional>
68     </dependency>
69     <dependency>
70       <groupId>org.ops4j.pax.cdi</groupId>
71       <artifactId>pax-cdi-api</artifactId>
72       <optional>true</optional>
73     </dependency>
74
75     <!-- Testing Dependencies -->
76     <dependency>
77       <groupId>org.opendaylight.genius</groupId>
78       <artifactId>testutils</artifactId>
79       <version>${project.version}</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.genius</groupId>
84       <artifactId>lockmanager-impl</artifactId>
85       <version>${project.version}</version>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.genius</groupId>
90       <artifactId>mdsalutil-testutils</artifactId>
91       <version>${project.version}</version>
92       <scope>test</scope>
93     </dependency>
94   </dependencies>
95
96   <build>
97     <pluginManagement>
98       <plugins>
99         <plugin>
100           <artifactId>maven-checkstyle-plugin</artifactId>
101           <dependencies>
102             <dependency>
103               <groupId>org.opendaylight.genius</groupId>
104               <artifactId>checkstyle</artifactId>
105               <version>${project.version}</version>
106             </dependency>
107           </dependencies>
108           <executions>
109             <execution>
110               <id>check-databroker</id>
111               <goals>
112                 <goal>check</goal>
113               </goals>
114               <phase>process-sources</phase>
115               <configuration>
116                 <configLocation>databroker-checks.xml</configLocation>
117                 <includeResources>false</includeResources>
118                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
119                 <includeTestResources>false</includeTestResources>
120                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
121                 <failsOnError>true</failsOnError>
122                 <consoleOutput>true</consoleOutput>
123               </configuration>
124             </execution>
125           </executions>
126         </plugin>
127       </plugins>
128     </pluginManagement>
129     <plugins>
130       <plugin>
131         <groupId>org.eclipse.xtend</groupId>
132         <artifactId>xtend-maven-plugin</artifactId>
133       </plugin>
134       <plugin>
135         <groupId>org.apache.aries.blueprint</groupId>
136         <artifactId>blueprint-maven-plugin</artifactId>
137       </plugin>
138     </plugins>
139   </build>
140 </project>