Release Oxygen
[groupbasedpolicy.git] / renderers / ios-xe / 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
10     <parent>
11         <groupId>org.opendaylight.groupbasedpolicy</groupId>
12         <artifactId>groupbasedpolicy-renderers</artifactId>
13         <version>0.7.0</version>
14         <relativePath>../</relativePath>
15     </parent>
16
17     <artifactId>ios-xe-renderer</artifactId>
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         <netconf.version>1.4.0</netconf.version>
25     </properties>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.netconf</groupId>
31                 <artifactId>netconf-artifacts</artifactId>
32                 <version>${netconf.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <!-- testing dependencies -->
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-core</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-binding-broker-impl</artifactId>
54             <type>test-jar</type>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.groupbasedpolicy</groupId>
59             <artifactId>groupbasedpolicy</artifactId>
60             <version>${project.version}</version>
61             <type>test-jar</type>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.slf4j</groupId>
66             <artifactId>slf4j-log4j12</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.sfc</groupId>
71             <artifactId>sfc-model</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.groupbasedpolicy</groupId>
75             <artifactId>sxp-ep-provider</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.groupbasedpolicy</groupId>
79             <artifactId>ip-sgt-distribution-service</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.sfc</groupId>
83             <artifactId>sfc-provider</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller.model</groupId>
87             <artifactId>model-inventory</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>sal-netconf-connector</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.mdsal.model</groupId>
95             <artifactId>ietf-inet-types-2013-07-15</artifactId>
96             <version>1.4.0</version>
97         </dependency>
98         <dependency>
99             <groupId>org.powermock</groupId>
100             <artifactId>powermock-module-junit4</artifactId>
101             <version>1.6.4</version>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.powermock</groupId>
106             <artifactId>powermock-api-mockito</artifactId>
107             <version>1.6.4</version>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112 </project>