Release bgpcep
[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.20.6</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.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>concepts</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-common</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>yang-binding</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
76             <artifactId>rfc6991-ietf-inet-types</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.apache.commons</groupId>
84             <artifactId>commons-lang3</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.kohsuke.metainf-services</groupId>
88             <artifactId>metainf-services</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>com.guicedee.services</groupId>
92             <artifactId>javax.inject</artifactId>
93             <optional>true</optional>
94         </dependency>
95         <dependency>
96             <groupId>org.osgi</groupId>
97             <artifactId>org.osgi.service.component.annotations</artifactId>
98         </dependency>
99
100         <!-- Test dependencies -->
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>config-loader-impl</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>config-loader-impl</artifactId>
109             <type>test-jar</type>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>routing-policy-config-loader</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>routing-policy-config-loader</artifactId>
120             <type>test-jar</type>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal</groupId>
125             <artifactId>mdsal-binding-test-utils</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-binding-dom-adapter</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.mdsal</groupId>
135             <artifactId>mdsal-binding-dom-adapter</artifactId>
136             <scope>test</scope>
137             <type>test-jar</type>
138         </dependency>
139         <dependency>
140             <groupId>${project.groupId}</groupId>
141             <artifactId>testtool-util</artifactId>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>${project.groupId}</groupId>
146             <artifactId>bgp-openconfig-rp-impl</artifactId>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>${project.groupId}</groupId>
151             <artifactId>bgp-openconfig-rp-impl</artifactId>
152             <type>test-jar</type>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>${project.groupId}</groupId>
157             <artifactId>bgp-openconfig-rp-spi</artifactId>
158             <type>test-jar</type>
159             <scope>test</scope>
160         </dependency>
161     </dependencies>
162
163     <build>
164         <plugins>
165             <plugin>
166                 <artifactId>maven-jar-plugin</artifactId>
167                 <executions>
168                     <execution>
169                         <goals>
170                             <goal>test-jar</goal>
171                         </goals>
172                     </execution>
173                 </executions>
174             </plugin>
175             <plugin>
176                 <artifactId>maven-source-plugin</artifactId>
177                 <executions>
178                     <execution>
179                         <goals>
180                             <goal>test-jar-no-fork</goal>
181                         </goals>
182                     </execution>
183                 </executions>
184             </plugin>
185         </plugins>
186     </build>
187
188     <scm>
189         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
190         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
191         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
192         <tag>HEAD</tag>
193     </scm>
194 </project>