Bump versions by x.y.(z+1)
[bgpcep.git] / bgp / openconfig-rp-impl / 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.10.4-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-openconfig-rp-impl</artifactId>
21     <packaging>bundle</packaging>
22     <description>BGP Openconfig Routing Policy Impl</description>
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-openconfig-rp-spi</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-rib-spi</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>bgp-parser-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal-common-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>yang-binding</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal.model</groupId>
60             <artifactId>ietf-inet-types-2013-07-15</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.google.guava</groupId>
64             <artifactId>guava</artifactId>
65         </dependency>
66         <!-- Test tools -->
67         <dependency>
68             <groupId>org.mockito</groupId>
69             <artifactId>mockito-core</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-binding-broker-impl</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-binding-broker-impl</artifactId>
79             <scope>test</scope>
80             <type>test-jar</type>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>config-loader-impl</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>config-loader-impl</artifactId>
90             <type>test-jar</type>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>routing-policy-config-loader</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>routing-policy-config-loader</artifactId>
101             <type>test-jar</type>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>testtool-util</artifactId>
107             <scope>test</scope>
108         </dependency>
109     </dependencies>
110
111     <build>
112         <plugins>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <executions>
117                     <execution>
118                         <phase>package</phase>
119                         <goals>
120                             <goal>test-jar</goal>
121                         </goals>
122                     </execution>
123                 </executions>
124             </plugin>
125         </plugins>
126     </build>
127
128     <scm>
129         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
130         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
131         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
132         <tag>HEAD</tag>
133     </scm>
134 </project>