Bump versions by x.(y+1).z for next dev cycle
[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>bgpcep-parent</artifactId>
14     <version>0.8.0-SNAPSHOT</version>
15     <relativePath>../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.mdsal</groupId>
36       <artifactId>yang-binding</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>concepts</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-common-api</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>config-api</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>org.opendaylight.mdsal.model</groupId>
62       <artifactId>ietf-topology</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal-binding-config</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.osgi</groupId>
71       <artifactId>org.osgi.core</artifactId>
72       <scope>provided</scope>
73     </dependency>
74
75     <!-- test dependencies -->
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-binding-broker-impl</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>sal-binding-broker-impl</artifactId>
88       <scope>test</scope>
89       <type>test-jar</type>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>config-manager</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>config-util</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.mockito</groupId>
102       <artifactId>mockito-core</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.yangtools</groupId>
106       <artifactId>mockito-configuration</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>config-manager</artifactId>
111       <type>test-jar</type>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>testtool-util</artifactId>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.opendaylight.yangtools</groupId>
124         <artifactId>yang-maven-plugin</artifactId>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.felix</groupId>
128         <artifactId>maven-bundle-plugin</artifactId>
129         <extensions>true</extensions>
130         <configuration>
131           <instructions>
132             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
133           </instructions>
134         </configuration>
135       </plugin>
136     </plugins>
137   </build>
138
139   <!--
140       Maven Site Configuration
141
142       The following configuration is necessary for maven-site-plugin to
143       correctly identify the correct deployment path for OpenDaylight Maven
144       sites.
145   -->
146   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
147
148   <distributionManagement>
149     <site>
150       <id>opendaylight-site</id>
151       <url>${nexus.site.url}/${project.artifactId}/</url>
152     </site>
153   </distributionManagement>
154 </project>