Bump versions by x.(y+1).z for next dev cycle
[groupbasedpolicy.git] / sxp-integration / ip-sgt-distribution-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.controller</groupId>
11         <artifactId>config-parent</artifactId>
12         <version>0.7.0-SNAPSHOT</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.groupbasedpolicy</groupId>
17     <artifactId>ip-sgt-distribution-service</artifactId>
18     <version>0.6.0-SNAPSHOT</version>
19     <packaging>bundle</packaging>
20     <name>groupbasedpolicy-ip-sgt-distribution-service</name>
21
22     <properties>
23         <sxp.version>1.5.0-SNAPSHOT</sxp.version>
24     </properties>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.sxp</groupId>
30                 <artifactId>sxp-core</artifactId>
31                 <version>${sxp.version}</version>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.sxp</groupId>
35                 <artifactId>sxp-api</artifactId>
36                 <version>${sxp.version}</version>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.sxp</groupId>
40                 <artifactId>sxp-controller</artifactId>
41                 <version>${sxp.version}</version>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.mdsal.model</groupId>
49             <artifactId>ietf-topology</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>ietf-inet-types-2013-07-15</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>yang-ext</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.sxp</groupId>
61             <artifactId>sxp-core</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.sxp</groupId>
65             <artifactId>sxp-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.sxp</groupId>
69             <artifactId>sxp-controller</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.sxp</groupId>
73             <artifactId>sxp-core</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.groupbasedpolicy</groupId>
77             <artifactId>groupbasedpolicy</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80         <!-- testing dependencies -->
81         <dependency>
82             <groupId>org.opendaylight.groupbasedpolicy</groupId>
83             <artifactId>groupbasedpolicy</artifactId>
84             <version>${project.version}</version>
85             <type>test-jar</type>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>junit</groupId>
90             <artifactId>junit</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-core</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.powermock</groupId>
100             <artifactId>powermock-module-junit4</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.powermock</groupId>
105             <artifactId>powermock-api-mockito</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>sal-binding-broker-impl</artifactId>
111             <type>test-jar</type>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115
116     <!-- project build -->
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.felix</groupId>
121                 <artifactId>maven-bundle-plugin</artifactId>
122                 <extensions>true</extensions>
123             </plugin>
124         </plugins>
125     </build>
126 </project>