Bump versions by 0.1.0 for next dev cycle
[groupbasedpolicy.git] / groupbasedpolicy-ise-adapter / 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>groupbasedpolicy-ise-adapter</artifactId>
18     <version>0.5.0-SNAPSHOT</version>
19     <packaging>bundle</packaging>
20     <name>groupbasedpolicy-ise-adapter</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         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <!-- model dependencies -->
45         <dependency>
46             <groupId>org.opendaylight.groupbasedpolicy</groupId>
47             <artifactId>sxp-mapper</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.sxp</groupId>
51             <artifactId>sxp-api</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.mdsal.model</groupId>
56             <artifactId>ietf-inet-types-2013-07-15</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal.model</groupId>
60             <artifactId>ietf-yang-types-20130715</artifactId>
61         </dependency>
62
63         <!-- util -->
64         <dependency>
65             <groupId>commons-net</groupId>
66             <artifactId>commons-net</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>com.sun.jersey</groupId>
70             <artifactId>jersey-client</artifactId>
71         </dependency>
72
73         <!-- testing dependencies -->
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.mockito</groupId>
81             <artifactId>mockito-all</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.slf4j</groupId>
86             <artifactId>slf4j-log4j12</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.powermock</groupId>
91             <artifactId>powermock-module-junit4</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.powermock</groupId>
96             <artifactId>powermock-api-mockito</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-broker-impl</artifactId>
102             <type>test-jar</type>
103             <scope>test</scope>
104         </dependency>
105     </dependencies>
106
107     <!-- project build -->
108     <build>
109         <plugins>
110             <plugin>
111                 <groupId>org.apache.felix</groupId>
112                 <artifactId>maven-bundle-plugin</artifactId>
113                 <extensions>true</extensions>
114             </plugin>
115         </plugins>
116     </build>
117 </project>