BgpManager Initial commit
[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     <interfacemgr.version>0.0.1-SNAPSHOT</interfacemgr.version>
27   </properties>
28   <dependencyManagement>
29     <dependencies>
30       <!-- project specific dependencies -->
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>mdsal-artifacts</artifactId>
34         <version>${mdsal.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>features-yangtools</artifactId>
44       <classifier>features</classifier>
45       <version>${yangtools.version}</version>
46       <type>xml</type>
47       <scope>runtime</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>features-mdsal</artifactId>
52       <classifier>features</classifier>
53       <version>${mdsal.version}</version>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>features-flow</artifactId>
60       <classifier>features</classifier>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>features-restconf</artifactId>
67       <classifier>features</classifier>
68       <version>${mdsal.version}</version>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>vpnmanager-impl</artifactId>
75       <version>${project.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>vpnmanager-impl</artifactId>
80       <version>${project.version}</version>
81       <classifier>config</classifier>
82       <type>xml</type>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>interfacemgr-impl</artifactId>
87       <version>${interfacemgr.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>interfacemgr-impl</artifactId>
92       <version>${interfacemgr.version}</version>
93       <classifier>config</classifier>
94       <type>xml</type>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>vpnmanager-api</artifactId>
99       <version>${project.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>bgpmanager-impl</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>bgpmanager-impl</artifactId>
109       <version>${project.version}</version>
110       <classifier>config</classifier>
111       <type>xml</type>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>bgpmanager-api</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <!--<dependency>
119       <groupId>${project.groupId}.third-party</groupId>
120       <artifactId>org.apache.thriftlib</artifactId>
121       <version>1.0.1-SNAPSHOT</version>
122     </dependency>-->
123     <dependency>
124       <groupId>org.apache.thrift</groupId>
125       <artifactId>libthrift</artifactId>
126       <version>0.9.1</version>
127     </dependency>
128     <!--
129     <dependency>
130       <groupId>javax.servlet</groupId>
131       <artifactId>servlet-api</artifactId>
132       <version>2.5</version>
133     </dependency>
134     -->
135   </dependencies>
136 </project>