blob: 220bd35b46b39cce450145a06e0779d713cc237e [file] [log] [blame]
samuele4e75052015-07-21 11:51:22 +08001<?xml version="1.0"?>
Thomas Vachuska58de4162015-09-10 16:15:33 -07002<!--
3 ~ Copyright 2015 Open Networking Laboratory
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 -->
samuele4e75052015-07-21 11:51:22 +080017<project
Thomas Vachuska58de4162015-09-10 16:15:33 -070018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
samuele4e75052015-07-21 11:51:22 +080021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Brian O'Connorcbc58782015-09-10 17:08:00 -070025 <version>1.3.0-rc2</version>
samuele4e75052015-07-21 11:51:22 +080026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-vtn</artifactId>
30 <packaging>bundle</packaging>
31
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <onos.app.name>org.onosproject.vtn</onos.app.name>
36 </properties>
37 <dependencies>
38 <dependency>
39 <groupId>javax.ws.rs</groupId>
40 <artifactId>jsr311-api</artifactId>
41 <version>1.1.1</version>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
samuele4e75052015-07-21 11:51:22 +080045 <artifactId>onos-incubator-api</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-serializers</artifactId>
50 <version>${project.version}</version>
51 </dependency>
samuela5e17fc2015-07-29 15:46:40 +080052 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-app-vtnrsc</artifactId>
55 <version>${project.version}</version>
56 </dependency>
samuele4e75052015-07-21 11:51:22 +080057 </dependencies>
58</project>