blob: 9102a7bc1b42e3ce36ca811dcec45a2a31574713 [file] [log] [blame]
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <artifactId>onos-apps</artifactId>
24 <groupId>org.onosproject</groupId>
ONOS Jenkins User6a6ac1d2017-12-09 03:39:39 +000025 <version>1.13.0-b1</version>
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-apps-l3vpn</artifactId>
30 <packaging>bundle</packaging>
31
32 <dependencies>
33
34 <dependency>
35 <groupId>org.onosproject</groupId>
36 <artifactId>onlab-misc</artifactId>
37 </dependency>
38
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-api</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-apps-config</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-yang-model</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-yang-runtime</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-models-l3vpn</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070066 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-apps-pce-app</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-incubator-api</artifactId>
75 </dependency>
76
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070077 </dependencies>
78</project>