Release Carbon
[groupbasedpolicy.git] / features / odl-groupbasedpolicy-iovisor / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.odlparent</groupId>
8         <artifactId>single-feature-parent</artifactId>
9         <version>1.8.2-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.groupbasedpolicy</groupId>
14     <artifactId>odl-groupbasedpolicy-iovisor</artifactId>
15     <version>0.5.2-Carbon</version>
16     <packaging>feature</packaging>
17     <!--
18         The IOVisor renderer.
19
20         This renderer maps GBP service model to agents of the IOVisor Linux Foundation project.
21     -->
22     <name>OpenDaylight :: groupbasedpolicy :: IOVisor Renderer</name>
23
24     <properties>
25         <aaa.version>0.5.2-Carbon</aaa.version>
26         <restconf.version>1.5.2-Carbon</restconf.version>
27     </properties>
28
29     <dependencyManagement>
30         <dependencies>
31             <!-- ODL-GBP-ARTIFACTS -->
32             <dependency>
33                 <groupId>${project.groupId}</groupId>
34                 <artifactId>groupbasedpolicy-artifacts</artifactId>
35                 <version>${project.version}</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39             <!-- ODL-AAA-ARTIFACTS -->
40             <dependency>
41                 <groupId>org.opendaylight.aaa</groupId>
42                 <artifactId>features-aaa-shiro</artifactId>
43                 <version>${aaa.version}</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47             <!-- ODL-NETCONF-ARTIFACTS -->
48             <dependency>
49                 <groupId>org.opendaylight.netconf</groupId>
50                 <artifactId>restconf-artifacts</artifactId>
51                 <version>${restconf.version}</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55         </dependencies>
56     </dependencyManagement>
57
58     <dependencies>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>iovisor-renderer</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.sun.jersey</groupId>
65             <artifactId>jersey-core</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.sun.jersey</groupId>
69             <artifactId>jersey-client</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>com.google.code.gson</groupId>
73             <artifactId>gson</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>odl-groupbasedpolicy-base</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
80             <scope>runtime</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.aaa</groupId>
84             <artifactId>odl-aaa-shiro</artifactId>
85             <type>xml</type>
86             <classifier>features</classifier>
87             <scope>runtime</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>odl-restconf</artifactId>
92             <type>xml</type>
93             <classifier>features</classifier>
94             <scope>runtime</scope>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>iovisor-renderer</artifactId>
99             <type>xml</type>
100             <classifier>config</classifier>
101             <scope>runtime</scope>
102         </dependency>
103     </dependencies>
104 </project>