Merge "Bug-730: More tests for testing tools."
[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>commons.parent</artifactId>
14     <version>0.3.1-SNAPSHOT</version>
15     <relativePath>../commons/parent</relativePath>
16   </parent>
17   <prerequisites>
18     <maven>3.0.4</maven>
19   </prerequisites>
20   <artifactId>data-change-counter</artifactId>
21   <packaging>bundle</packaging>
22   <name>${project.artifactId}</name>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.slf4j</groupId>
27       <artifactId>slf4j-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.google.guava</groupId>
31       <artifactId>guava</artifactId>
32     </dependency>
33
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-binding</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-common</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-binding-api</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>config-api</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.yangtools.model</groupId>
54       <artifactId>ietf-topology</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-binding-config</artifactId>
60     </dependency>
61
62     <!-- test dependencies -->
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal-binding-broker-impl</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-broker-impl</artifactId>
75       <scope>test</scope>
76       <type>test-jar</type>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>mockito-configuration</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>config-manager</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>config-util</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>mockito-configuration</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>config-manager</artifactId>
97       <type>test-jar</type>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.opendaylight.yangtools</groupId>
105         <artifactId>yang-maven-plugin</artifactId>
106       </plugin>
107       <plugin>
108         <groupId>org.apache.felix</groupId>
109         <artifactId>maven-bundle-plugin</artifactId>
110         <extensions>true</extensions>
111         <configuration>
112           <instructions>
113             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
114           </instructions>
115         </configuration>
116       </plugin>
117     </plugins>
118   </build>
119 </project>