Enforce fail on maven-dependency-plugin warning
[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.10.0-SNAPSHOT</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-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-rib-spi</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-openconfig-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-openconfig-spi</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>bgp-concepts</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>yang-common</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>concepts</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-common-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-data-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-common-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal.model</groupId>
72             <artifactId>ietf-yang-types-20130715</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal.model</groupId>
76             <artifactId>ietf-inet-types-2013-07-15</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <!-- test scope dependencies -->
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-core-api</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>sal-core-spi</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-inmemory-datastore</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-rib-spi</artifactId>
101             <scope>test</scope>
102             <type>test-jar</type>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.infrautils</groupId>
106             <artifactId>infrautils-testutils</artifactId>
107             <version>1.4.0-SNAPSHOT</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>testtool-util</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.controller</groupId>
117             <artifactId>sal-binding-broker-impl</artifactId>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.controller</groupId>
122             <artifactId>sal-binding-broker-impl</artifactId>
123             <scope>test</scope>
124             <type>test-jar</type>
125         </dependency>
126         <dependency>
127             <groupId>org.mockito</groupId>
128             <artifactId>mockito-core</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.yangtools</groupId>
132             <artifactId>mockito-configuration</artifactId>
133         </dependency>
134     </dependencies>
135
136     <build>
137         <plugins>
138             <plugin>
139                 <groupId>org.apache.felix</groupId>
140                 <artifactId>maven-bundle-plugin</artifactId>
141                 <extensions>true</extensions>
142                 <configuration>
143                     <instructions>
144                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
145                         <Export-Package>
146                             org.opendaylight.protocol.bgp.state.impl.*,
147                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.state.config.rev161107.*,
148                             ;-split-package:=error
149                         </Export-Package>
150                     </instructions>
151                 </configuration>
152             </plugin>
153         </plugins>
154     </build>
155
156     <scm>
157         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
158         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
159         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
160         <tag>HEAD</tag>
161     </scm>
162 </project>