Fix findbugs violations in fcapsapplication
[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.5.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.5.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       <version>${genius.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.genius</groupId>
35       <artifactId>lockmanager-api</artifactId>
36       <version>${genius.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.genius</groupId>
40       <artifactId>mdsalutil-api</artifactId>
41       <version>${genius.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.daexim</groupId>
45       <artifactId>daexim-model</artifactId>
46       <version>1.4.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>javax.inject</groupId>
50       <artifactId>javax.inject</artifactId>
51       <optional>true</optional>
52     </dependency>
53     <dependency>
54       <groupId>org.ops4j.pax.cdi</groupId>
55       <artifactId>pax-cdi-api</artifactId>
56       <optional>true</optional>
57     </dependency>
58
59     <!-- Testing Dependencies -->
60     <dependency>
61       <groupId>org.opendaylight.genius</groupId>
62       <artifactId>testutils</artifactId>
63       <version>${genius.version}</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.genius</groupId>
68       <artifactId>lockmanager-impl</artifactId>
69       <version>${genius.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.genius</groupId>
74       <artifactId>mdsalutil-testutils</artifactId>
75       <version>${genius.mdsalutil.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal-common-testutil</artifactId>
81       <version>${controller.mdsal.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.eclipse.xtend</groupId>
90         <artifactId>xtend-maven-plugin</artifactId>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.aries.blueprint</groupId>
94         <artifactId>blueprint-maven-plugin</artifactId>
95       </plugin>
96       <plugin>
97         <groupId>org.codehaus.mojo</groupId>
98         <artifactId>findbugs-maven-plugin</artifactId>
99         <configuration>
100           <failOnError>true</failOnError>
101         </configuration>
102       </plugin>
103     </plugins>
104   </build>
105 </project>