793fe555fd2cc157f460613ccdfa5d19e242dc47
[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.15.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.mdsal</groupId>
56             <artifactId>mdsal-binding-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-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.binding.model.ietf</groupId>
68             <artifactId>rfc6991-ietf-yang-types</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
72             <artifactId>rfc6991-ietf-inet-types</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.google.guava</groupId>
76             <artifactId>guava</artifactId>
77         </dependency>
78         <!-- test scope dependencies -->
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-dom-api</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-spi</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>bgp-rib-spi</artifactId>
97             <scope>test</scope>
98             <type>test-jar</type>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.infrautils</groupId>
102             <artifactId>infrautils-testutils</artifactId>
103             <version>1.9.5</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>testtool-util</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal</groupId>
113             <artifactId>mdsal-binding-dom-adapter</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.mdsal</groupId>
118             <artifactId>mdsal-binding-test-utils</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.mdsal</groupId>
123             <artifactId>mdsal-binding-dom-adapter</artifactId>
124             <scope>test</scope>
125             <type>test-jar</type>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.yangtools</groupId>
129             <artifactId>mockito-configuration</artifactId>
130         </dependency>
131     </dependencies>
132
133     <build>
134         <plugins>
135             <plugin>
136                 <groupId>org.apache.felix</groupId>
137                 <artifactId>maven-bundle-plugin</artifactId>
138                 <extensions>true</extensions>
139                 <configuration>
140                     <instructions>
141                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
142                         <Export-Package>
143                             org.opendaylight.protocol.bgp.state.impl.*,
144                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.state.config.rev161107.*,
145                             ;-split-package:=error
146                         </Export-Package>
147                     </instructions>
148                 </configuration>
149             </plugin>
150         </plugins>
151     </build>
152
153     <scm>
154         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
155         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
156         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
157         <tag>HEAD</tag>
158     </scm>
159 </project>