Release Neon
[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.11.1</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.mdsal</groupId>
33             <artifactId>yang-binding</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal</groupId>
45             <artifactId>mdsal-binding-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal.model</groupId>
49             <artifactId>ietf-topology</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-common-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.osgi</groupId>
57             <artifactId>org.osgi.core</artifactId>
58             <scope>provided</scope>
59         </dependency>
60
61         <!-- test dependencies -->
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding-dom-adapter</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding-dom-adapter</artifactId>
70             <scope>test</scope>
71             <type>test-jar</type>
72         </dependency>
73         <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>mockito-configuration</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>testtool-util</artifactId>
84             <scope>test</scope>
85         </dependency>
86     </dependencies>
87 </project>