Bump versions by x.y.(z+1)
[alto.git] / alto-basic / simple-ird / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 SNLab and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.mdsal</groupId>
16     <artifactId>binding-parent</artifactId>
17     <version>0.10.3-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.alto.basic</groupId>
22   <artifactId>alto-simple-ird-api</artifactId>
23   <version>0.4.3-SNAPSHOT</version>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: alto :: ${project.artifactId}</name>
27   <packaging>bundle</packaging>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.alto.core</groupId>
32       <artifactId>alto-basic-types</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35
36     <dependency>
37       <groupId>org.opendaylight.alto.core</groupId>
38       <artifactId>alto-resourcepool-api</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41
42     <dependency>
43       <groupId>org.opendaylight.mdsal.model</groupId>
44       <artifactId>yang-ext</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>ietf-inet-types-2013-07-15</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.mdsal.model</groupId>
54       <artifactId>ietf-yang-types-20130715</artifactId>
55     </dependency>
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <scope>test</scope>
67     </dependency>
68   </dependencies>
69 </project>