Update MRI projects for Aluminium
[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.14.0-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
52         <!-- test dependencies -->
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-binding-test-utils</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-dom-adapter</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-dom-adapter</artifactId>
66             <scope>test</scope>
67             <type>test-jar</type>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>mockito-configuration</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>testtool-util</artifactId>
76             <scope>test</scope>
77         </dependency>
78     </dependencies>
79 </project>