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.groupbasedpolicy</groupId>
11         <artifactId>sxp-integration</artifactId>
12         <version>0.8.0-SNAPSHOT</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <artifactId>ip-sgt-distribution-service</artifactId>
17     <version>0.8.0-SNAPSHOT</version>
18     <packaging>bundle</packaging>
19     <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22
23     <properties>
24         <sxp.version>1.7.0-SNAPSHOT</sxp.version>
25     </properties>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.opendaylight.mdsal.model</groupId>
30             <artifactId>ietf-topology</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.mdsal.model</groupId>
34             <artifactId>ietf-inet-types-2013-07-15</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal.model</groupId>
38             <artifactId>yang-ext</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.sxp</groupId>
42             <artifactId>sxp-core</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.sxp</groupId>
46             <artifactId>sxp-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.sxp</groupId>
50             <artifactId>sxp-controller</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.groupbasedpolicy</groupId>
54             <artifactId>groupbasedpolicy</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <!-- testing dependencies -->
58         <dependency>
59             <groupId>org.opendaylight.groupbasedpolicy</groupId>
60             <artifactId>groupbasedpolicy</artifactId>
61             <version>${project.version}</version>
62             <type>test-jar</type>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.powermock</groupId>
77             <artifactId>powermock-module-junit4</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.powermock</groupId>
82             <artifactId>powermock-api-mockito</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-broker-impl</artifactId>
88             <type>test-jar</type>
89             <scope>test</scope>
90         </dependency>
91     </dependencies>
92
93     <!-- project build -->
94     <build>
95         <plugins>
96             <plugin>
97                 <groupId>org.apache.felix</groupId>
98                 <artifactId>maven-bundle-plugin</artifactId>
99                 <extensions>true</extensions>
100             </plugin>
101         </plugins>
102     </build>
103 </project>