Merge "Bug 8111: Conflicting modification for path"
[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>config-parent</artifactId>
14     <version>0.3.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-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>config-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-binding-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-binding-config</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>fcapsapplication-jmxapi</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.openflowplugin.model</groupId>
51       <artifactId>model-flow-service</artifactId>
52       <version>${openflowplugin.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.openflowplugin</groupId>
56       <artifactId>openflowplugin-common</artifactId>
57       <version>${openflowplugin.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>javax.inject</groupId>
61       <artifactId>javax.inject</artifactId>
62     </dependency>
63   </dependencies>
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-checkstyle-plugin</artifactId>
69         <configuration>
70           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
71         </configuration>
72       </plugin>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76       </plugin>
77       <plugin>
78         <groupId>org.opendaylight.yangtools</groupId>
79         <artifactId>yang-maven-plugin</artifactId>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.aries.blueprint</groupId>
83         <artifactId>blueprint-maven-plugin</artifactId>
84       </plugin>
85       <plugin>
86         <groupId>org.codehaus.mojo</groupId>
87         <artifactId>build-helper-maven-plugin</artifactId>
88       </plugin>
89     </plugins>
90   </build>
91 </project>