Release Neon
[bgpcep.git] / bgp / openconfig-rp-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 AT&T Intellectual Property. 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xmlns="http://maven.apache.org/POM/4.0.0"
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>bgpcep-parent</artifactId>
16         <version>0.11.3</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-openconfig-rp-spi</artifactId>
21     <description>BGP Openconfig Routing Policy Spi</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-concepts</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-openconfig-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-rib-spi</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-parser-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-binding-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-common-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>yang-binding</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-spec-util</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
60             <artifactId>rfc6991-ietf-inet-types</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>concepts</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.guava</groupId>
68             <artifactId>guava</artifactId>
69         </dependency>
70
71         <!-- Tests-->
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>config-loader-impl</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>config-loader-impl</artifactId>
80             <type>test-jar</type>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>routing-policy-config-loader</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>routing-policy-config-loader</artifactId>
91             <type>test-jar</type>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>sal-binding-broker-impl</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-broker-impl</artifactId>
102             <scope>test</scope>
103             <type>test-jar</type>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>testtool-util</artifactId>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112     <build>
113         <plugins>
114             <plugin>
115                 <groupId>org.apache.maven.plugins</groupId>
116                 <artifactId>maven-jar-plugin</artifactId>
117                 <executions>
118                     <execution>
119                         <phase>package</phase>
120                         <goals>
121                             <goal>test-jar</goal>
122                         </goals>
123                     </execution>
124                 </executions>
125             </plugin>
126         </plugins>
127     </build>
128
129     <scm>
130         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
131         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
132         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
133         <tag>HEAD</tag>
134     </scm>
135 </project>