4ff65cb1de098bb0d42185501858bc8298ea1c39
[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.21.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.eclipse.jdt</groupId>
48             <artifactId>org.eclipse.jdt.annotation</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-common-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>yang-binding</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
64             <artifactId>rfc6991-ietf-inet-types</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.guava</groupId>
68             <artifactId>guava</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.kohsuke.metainf-services</groupId>
72             <artifactId>metainf-services</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.guicedee.services</groupId>
76             <artifactId>javax.inject</artifactId>
77             <optional>true</optional>
78         </dependency>
79         <dependency>
80             <groupId>org.osgi</groupId>
81             <artifactId>org.osgi.service.component.annotations</artifactId>
82         </dependency>
83
84         <!-- Test tools -->
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>mdsal-binding-dom-adapter</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal</groupId>
92             <artifactId>mdsal-binding-dom-adapter</artifactId>
93             <scope>test</scope>
94             <type>test-jar</type>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>config-loader-impl</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>config-loader-impl</artifactId>
104             <type>test-jar</type>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>routing-policy-config-loader</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>routing-policy-config-loader</artifactId>
115             <type>test-jar</type>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>${project.groupId}</groupId>
120             <artifactId>testtool-util</artifactId>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <artifactId>maven-jar-plugin</artifactId>
129                 <executions>
130                     <execution>
131                         <goals>
132                             <goal>test-jar</goal>
133                         </goals>
134                     </execution>
135                 </executions>
136             </plugin>
137             <plugin>
138                 <artifactId>maven-source-plugin</artifactId>
139                 <executions>
140                     <execution>
141                         <goals>
142                             <goal>test-jar-no-fork</goal>
143                         </goals>
144                     </execution>
145                 </executions>
146             </plugin>
147         </plugins>
148     </build>
149
150     <scm>
151         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
152         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
153         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
154         <tag>HEAD</tag>
155     </scm>
156 </project>