5c1eb7f20ebd317c46e2ebbbc2820b84f81391d3
[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.9.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   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: genius :: ${project.artifactId}</name>
25
26   <dependencies>
27     <dependency>
28       <groupId>org.opendaylight.infrautils</groupId>
29       <artifactId>metrics-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.mdsal</groupId>
33       <artifactId>mdsal-eos-binding-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>fcapsapplication-jmxapi</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.openflowplugin.model</groupId>
42       <artifactId>model-flow-service</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.openflowplugin</groupId>
46       <artifactId>openflowplugin-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>javax.inject</groupId>
50       <artifactId>javax.inject</artifactId>
51       <optional>true</optional>
52     </dependency>
53     <dependency>
54       <groupId>javax.annotation</groupId>
55       <artifactId>javax.annotation-api</artifactId>
56       <optional>true</optional>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.genius</groupId>
60       <artifactId>mdsalutil-api</artifactId>
61       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.apache.aries.blueprint</groupId>
65       <artifactId>blueprint-maven-plugin-annotation</artifactId>
66       <optional>true</optional>
67     </dependency>
68   </dependencies>
69   <build>
70     <pluginManagement>
71       <plugins>
72         <plugin>
73           <artifactId>maven-checkstyle-plugin</artifactId>
74           <dependencies>
75             <dependency>
76               <groupId>org.opendaylight.genius</groupId>
77               <artifactId>checkstyle</artifactId>
78               <version>${project.version}</version>
79             </dependency>
80           </dependencies>
81           <executions>
82             <execution>
83               <id>check-databroker</id>
84               <goals>
85                 <goal>check</goal>
86               </goals>
87               <phase>process-sources</phase>
88               <configuration>
89                 <configLocation>databroker-checks.xml</configLocation>
90                 <includeResources>false</includeResources>
91                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
92                 <includeTestResources>false</includeTestResources>
93                 <sourceDirectories>
94                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
95                 </sourceDirectories>
96                 <failsOnError>true</failsOnError>
97                 <consoleOutput>true</consoleOutput>
98               </configuration>
99             </execution>
100           </executions>
101         </plugin>
102       </plugins>
103     </pluginManagement>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.aries.blueprint</groupId>
107         <artifactId>blueprint-maven-plugin</artifactId>
108         <configuration>
109           <scanPaths>org.opendaylight.genius.fcapsapp</scanPaths>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114 </project>