9cb5df51a7b0d688ec6ea6c98aec921901070206
[genius.git] / fcapsapplication / fcapsapplication-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015, 2017 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   <parent>
12     <groupId>org.opendaylight.genius</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/binding-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>fcapsapplication-impl</artifactId>
21   <version>${genius.version}</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.controller</groupId>
30       <artifactId>sal-binding-broker-impl</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal</groupId>
38       <artifactId>mdsal-eos-binding-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>fcapsapplication-jmxapi</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin.model</groupId>
47       <artifactId>model-flow-service</artifactId>
48       <version>${openflowplugin.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.openflowplugin</groupId>
52       <artifactId>openflowplugin-common</artifactId>
53       <version>${openflowplugin.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>javax.inject</groupId>
57       <artifactId>javax.inject</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.genius</groupId>
61       <artifactId>mdsalutil-api</artifactId>
62       <version>${genius.mdsalutil.version}</version>
63     </dependency>
64   </dependencies>
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70       </plugin>
71       <plugin>
72         <groupId>org.opendaylight.yangtools</groupId>
73         <artifactId>yang-maven-plugin</artifactId>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.aries.blueprint</groupId>
77         <artifactId>blueprint-maven-plugin</artifactId>
78       </plugin>
79       <plugin>
80         <groupId>org.codehaus.mojo</groupId>
81         <artifactId>build-helper-maven-plugin</artifactId>
82       </plugin>
83       <plugin>
84         <groupId>org.codehaus.mojo</groupId>
85         <artifactId>findbugs-maven-plugin</artifactId>
86         <configuration>
87           <failOnError>true</failOnError>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92 </project>