Bump versions to 0.20.3-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.3-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>com.google.guava</groupId>
35             <artifactId>guava</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-model-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-data-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-common</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-common-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-dom-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.service.component.annotations</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>jakarta.annotation</groupId>
63             <artifactId>jakarta.annotation-api</artifactId>
64             <scope>provided</scope>
65             <optional>true</optional>
66         </dependency>
67         <dependency>
68             <groupId>com.guicedee.services</groupId>
69             <artifactId>javax.inject</artifactId>
70             <optional>true</optional>
71         </dependency>
72
73         <!-- test scope dependencies -->
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>config-loader-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>config-loader-impl</artifactId>
82             <type>test-jar</type>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>yang-binding</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal</groupId>
92             <artifactId>mdsal-binding-test-utils</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.mdsal</groupId>
97             <artifactId>mdsal-binding-dom-adapter</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.mdsal</groupId>
102             <artifactId>mdsal-binding-dom-adapter</artifactId>
103             <type>test-jar</type>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.mdsal</groupId>
108             <artifactId>mdsal-binding-api</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}</groupId>
113             <artifactId>testtool-util</artifactId>
114             <scope>test</scope>
115         </dependency>
116     </dependencies>
117
118     <build>
119         <plugins>
120             <plugin>
121                 <artifactId>maven-jar-plugin</artifactId>
122                 <executions>
123                     <execution>
124                         <goals>
125                             <goal>test-jar</goal>
126                         </goals>
127                     </execution>
128                 </executions>
129             </plugin>
130             <plugin>
131                 <artifactId>maven-source-plugin</artifactId>
132                 <executions>
133                     <execution>
134                         <goals>
135                             <goal>test-jar-no-fork</goal>
136                         </goals>
137                     </execution>
138                 </executions>
139             </plugin>
140         </plugins>
141     </build>
142
143     <scm>
144         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
145         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
146         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
147         <tag>HEAD</tag>
148     </scm>
149 </project>