Release Oxygen
[bgpcep.git] / bgp / openconfig-state / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>binding-parent</artifactId>
16         <version>0.9.4</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-openconfig-state</artifactId>
21     <description>BGP Openconfig State</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-rib-spi</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.bgpcep</groupId>
32             <artifactId>bgp-openconfig-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.bgpcep</groupId>
36             <artifactId>bgp-openconfig-spi</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-api</artifactId>
41         </dependency>
42         <!-- test scope dependencies -->
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-rib-spi</artifactId>
46             <scope>test</scope>
47             <type>test-jar</type>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>testtool-util</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-broker-impl</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-binding-broker-impl</artifactId>
62             <scope>test</scope>
63             <type>test-jar</type>
64         </dependency>
65         <dependency>
66             <groupId>org.mockito</groupId>
67             <artifactId>mockito-core</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>mockito-configuration</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76         </dependency>
77     </dependencies>
78
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <extensions>true</extensions>
85                 <configuration>
86                     <instructions>
87                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
88                         <Export-Package>
89                             org.opendaylight.protocol.bgp.state.impl.*,
90                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.state.config.rev161107.*,
91                             ;-split-package:=error
92                         </Export-Package>
93                     </instructions>
94                 </configuration>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-checkstyle-plugin</artifactId>
99                 <configuration>
100                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
101                 </configuration>
102             </plugin>
103             <plugin>
104                 <groupId>org.codehaus.mojo</groupId>
105                 <artifactId>findbugs-maven-plugin</artifactId>
106                 <configuration>
107                     <failOnError>true</failOnError>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112
113     <scm>
114         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
115         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
116         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
117         <tag>HEAD</tag>
118     </scm>
119 </project>