Bump versions by 0.1.0 for next dev cycle
[groupbasedpolicy.git] / sxp-mapper / 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.6.0-SNAPSHOT</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.groupbasedpolicy</groupId>
17     <artifactId>sxp-mapper</artifactId>
18     <version>0.5.0-SNAPSHOT</version>
19     <packaging>bundle</packaging>
20     <name>groupbasedpolicy-sxp-mapper</name>
21
22     <properties>
23         <sxp.version>1.4.0-SNAPSHOT</sxp.version>
24     </properties>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.groupbasedpolicy</groupId>
30                 <artifactId>groupbasedpolicy-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <scope>import</scope>
33                 <type>pom</type>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.sxp</groupId>
37                 <artifactId>sxp-api</artifactId>
38                 <version>${sxp.version}</version>
39             </dependency>
40             <dependency>
41                 <groupId>org.opendaylight.sxp</groupId>
42                 <artifactId>sxp-core</artifactId>
43                 <version>${sxp.version}</version>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <!-- model dependencies -->
50         <dependency>
51             <groupId>org.opendaylight.mdsal.model</groupId>
52             <artifactId>ietf-inet-types-2013-07-15</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal.model</groupId>
56             <artifactId>yang-ext</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.groupbasedpolicy</groupId>
60             <artifactId>l2-l3-domain-extension</artifactId>
61         </dependency>
62
63         <!-- sxp deps -->
64         <dependency>
65             <groupId>org.opendaylight.sxp</groupId>
66             <artifactId>sxp-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.sxp</groupId>
70             <artifactId>sxp-core</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>commons-net</groupId>
74             <artifactId>commons-net</artifactId>
75         </dependency>
76
77         <!-- testing dependencies -->
78         <dependency>
79             <groupId>junit</groupId>
80             <artifactId>junit</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.mockito</groupId>
85             <artifactId>mockito-all</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.slf4j</groupId>
90             <artifactId>slf4j-log4j12</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-binding-broker-impl</artifactId>
96             <type>test-jar</type>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100
101     <!-- project build -->
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.felix</groupId>
106                 <artifactId>maven-bundle-plugin</artifactId>
107                 <extensions>true</extensions>
108             </plugin>
109         </plugins>
110     </build>
111 </project>