Genius Neon MRI changes
[genius.git] / ipv6util / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2018 Alten Calsoft Labs India 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   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.6.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <artifactId>ipv6util-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>${project.groupId}</groupId>
29       <artifactId>ipv6util-api</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>interfacemanager-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>javax.inject</groupId>
39       <artifactId>javax.inject</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.infrautils</groupId>
43       <artifactId>infrautils-testutils</artifactId>
44       <version>${genius.infrautils.version}</version>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48   <build>
49     <pluginManagement>
50       <plugins>
51         <plugin>
52           <artifactId>maven-checkstyle-plugin</artifactId>
53           <dependencies>
54             <dependency>
55               <groupId>org.opendaylight.genius</groupId>
56               <artifactId>checkstyle</artifactId>
57               <version>${project.version}</version>
58             </dependency>
59           </dependencies>
60           <executions>
61             <execution>
62               <id>check-databroker</id>
63               <goals>
64                 <goal>check</goal>
65               </goals>
66               <phase>process-sources</phase>
67               <configuration>
68                 <configLocation>databroker-checks.xml</configLocation>
69                 <includeResources>false</includeResources>
70                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
71                 <includeTestResources>false</includeTestResources>
72                 <sourceDirectories>
73                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
74                 </sourceDirectories>
75                 <failsOnError>true</failsOnError>
76                 <consoleOutput>true</consoleOutput>
77               </configuration>
78             </execution>
79           </executions>
80         </plugin>
81       </plugins>
82     </pluginManagement>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.aries.blueprint</groupId>
86         <artifactId>blueprint-maven-plugin</artifactId>
87       </plugin>
88     </plugins>
89   </build>
90 </project>