Merge "BUG-7758: Fix creation of FLAT and VLAN networks with the same parent"
[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.2.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
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-binding-broker-impl</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>config-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-binding-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-config</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>fcapsapplication-jmxapi</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.openflowplugin.model</groupId>
48       <artifactId>model-flow-service</artifactId>
49       <version>${openflowplugin.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.openflowplugin</groupId>
53       <artifactId>openflowplugin-common</artifactId>
54       <version>${openflowplugin.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>javax.inject</groupId>
58       <artifactId>javax.inject</artifactId>
59     </dependency>
60   </dependencies>
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-checkstyle-plugin</artifactId>
66         <configuration>
67           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73       </plugin>
74       <plugin>
75         <groupId>org.opendaylight.yangtools</groupId>
76         <artifactId>yang-maven-plugin</artifactId>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.aries.blueprint</groupId>
80         <artifactId>blueprint-maven-plugin</artifactId>
81       </plugin>
82       <plugin>
83         <groupId>org.codehaus.mojo</groupId>
84         <artifactId>build-helper-maven-plugin</artifactId>
85       </plugin>
86     </plugins>
87   </build>
88 </project>