Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / data-change-counter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
4   This program and the accompanying materials are made available under the
5   terms of the Eclipse Public License v1.0 which accompanies this distribution,
6   and is available at http://www.eclipse.org/legal/epl-v10.html -->
7
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.bgpcep</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.20.5-SNAPSHOT</version>
15         <relativePath>../binding-parent</relativePath>
16     </parent>
17     <artifactId>data-change-counter</artifactId>
18     <packaging>bundle</packaging>
19     <name>${project.artifactId}</name>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.slf4j</groupId>
24             <artifactId>slf4j-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>com.google.guava</groupId>
28             <artifactId>guava</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>concepts</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-common</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-binding-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal.model</groupId>
45             <artifactId>ietf-topology</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-common-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.osgi</groupId>
53             <artifactId>org.osgi.service.component.annotations</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>jakarta.annotation</groupId>
57             <artifactId>jakarta.annotation-api</artifactId>
58             <scope>provided</scope>
59             <optional>true</optional>
60         </dependency>
61         <dependency>
62             <groupId>com.guicedee.services</groupId>
63             <artifactId>javax.inject</artifactId>
64             <optional>true</optional>
65         </dependency>
66
67         <!-- test dependencies -->
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-binding-test-utils</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-binding-dom-adapter</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal</groupId>
80             <artifactId>mdsal-binding-dom-adapter</artifactId>
81             <scope>test</scope>
82             <type>test-jar</type>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>mockito-configuration</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>testtool-util</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94 </project>