3304344460fe4915e0e3b70e7c815679c486ff0f
[vpnservice.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.5.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.vpnservice</groupId>
16   <artifactId>vpnservice-features</artifactId>
17   <version>1.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
25     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
26   </properties>
27   <dependencyManagement>
28     <dependencies>
29       <!-- project specific dependencies -->
30       <dependency>
31         <groupId>org.opendaylight.controller</groupId>
32         <artifactId>mdsal-artifacts</artifactId>
33         <version>${mdsal.version}</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37     </dependencies>
38   </dependencyManagement>
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>features-yangtools</artifactId>
43       <classifier>features</classifier>
44       <version>${yangtools.version}</version>
45       <type>xml</type>
46       <scope>runtime</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>features-mdsal</artifactId>
51       <classifier>features</classifier>
52       <version>${mdsal.version}</version>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>features-restconf</artifactId>
59       <classifier>features</classifier>
60       <version>${mdsal.version}</version>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>vpnmanager-impl</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>vpnmanager-api</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74   </dependencies>
75 </project>