Bump versions to 0.20.0-SNAPSHOT
[bgpcep.git] / config-loader / routing-policy-config-loader / 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.0-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>routing-policy-config-loader</artifactId>
21     <description>BGPCEP BGP Openconfig Routing Policy configuration Loader</description>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>bgp-openconfig-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>config-loader-spi</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-model-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-data-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-common-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-dom-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.google.guava</groupId>
51             <artifactId>guava</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.service.component.annotations</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>jakarta.annotation</groupId>
59             <artifactId>jakarta.annotation-api</artifactId>
60             <scope>provided</scope>
61             <optional>true</optional>
62         </dependency>
63         <dependency>
64             <groupId>com.guicedee.services</groupId>
65             <artifactId>javax.inject</artifactId>
66             <optional>true</optional>
67         </dependency>
68
69         <!-- test scope dependencies -->
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>config-loader-impl</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>config-loader-impl</artifactId>
78             <type>test-jar</type>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>yang-binding</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.mdsal</groupId>
88             <artifactId>mdsal-binding-test-utils</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.mdsal</groupId>
93             <artifactId>mdsal-binding-dom-adapter</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.mdsal</groupId>
98             <artifactId>mdsal-binding-dom-adapter</artifactId>
99             <type>test-jar</type>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>testtool-util</artifactId>
105             <scope>test</scope>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <artifactId>maven-jar-plugin</artifactId>
113                 <executions>
114                     <execution>
115                         <goals>
116                             <goal>test-jar</goal>
117                         </goals>
118                     </execution>
119                 </executions>
120             </plugin>
121             <plugin>
122                 <artifactId>maven-source-plugin</artifactId>
123                 <executions>
124                     <execution>
125                         <goals>
126                             <goal>test-jar-no-fork</goal>
127                         </goals>
128                     </execution>
129                 </executions>
130             </plugin>
131         </plugins>
132     </build>
133
134     <scm>
135         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
136         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
137         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
138         <tag>HEAD</tag>
139     </scm>
140 </project>