Bump versions by x.y.(z+1)
[bgpcep.git] / bgp / openconfig-rp-statement / 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-statement</artifactId>
21     <description>BGP Openconfig Routing Policy Statement</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-openconfig-rp-spi</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-parser-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>bgp-rib-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>bgp-rib-spi</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>util</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.mdsal</groupId>
64             <artifactId>yang-binding</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal.model</groupId>
68             <artifactId>ietf-inet-types-2013-07-15</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.google.guava</groupId>
72             <artifactId>guava</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.apache.commons</groupId>
76             <artifactId>commons-lang3</artifactId>
77         </dependency>
78         <!-- Test dependencies -->
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>config-loader-impl</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>config-loader-impl</artifactId>
87             <type>test-jar</type>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>routing-policy-config-loader</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>routing-policy-config-loader</artifactId>
98             <type>test-jar</type>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>sal-binding-broker-impl</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>sal-binding-broker-impl</artifactId>
109             <scope>test</scope>
110             <type>test-jar</type>
111         </dependency>
112         <dependency>
113             <groupId>org.mockito</groupId>
114             <artifactId>mockito-core</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>${project.groupId}</groupId>
118             <artifactId>testtool-util</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>${project.groupId}</groupId>
123             <artifactId>bgp-openconfig-rp-impl</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>${project.groupId}</groupId>
128             <artifactId>bgp-openconfig-rp-impl</artifactId>
129             <type>test-jar</type>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>${project.groupId}</groupId>
134             <artifactId>bgp-openconfig-rp-spi</artifactId>
135             <type>test-jar</type>
136             <scope>test</scope>
137         </dependency>
138     </dependencies>
139
140     <build>
141         <plugins>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-jar-plugin</artifactId>
145                 <executions>
146                     <execution>
147                         <phase>package</phase>
148                         <goals>
149                             <goal>test-jar</goal>
150                         </goals>
151                     </execution>
152                 </executions>
153             </plugin>
154         </plugins>
155     </build>
156
157     <scm>
158         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
159         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
160         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
161         <tag>HEAD</tag>
162     </scm>
163 </project>