blob: e8387cb7856c228ee8380385828f52b701aad1a9 [file] [log] [blame]
samueljccda82eb82015-10-07 16:29:52 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska58de4162015-09-10 16:15:33 -07002<!--
samueljccda82eb82015-10-07 16:29:52 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska58de4162015-09-10 16:15:33 -07004 ~
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 -->
samueljccda82eb82015-10-07 16:29:52 -070017<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/maven-v4_0_0.xsd">
samuele4e75052015-07-21 11:51:22 +080020 <modelVersion>4.0.0</modelVersion>
samueljccda82eb82015-10-07 16:29:52 -070021
samuele4e75052015-07-21 11:51:22 +080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Brian O'Connorf967ad62015-09-18 15:19:54 -070025 <version>1.4.0-SNAPSHOT</version>
samuele4e75052015-07-21 11:51:22 +080026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-vtn</artifactId>
samueljccda82eb82015-10-07 16:29:52 -070030 <packaging>pom</packaging>
samuele4e75052015-07-21 11:51:22 +080031
samueljccda82eb82015-10-07 16:29:52 -070032 <description>ONOS framework applications</description>
samuele4e75052015-07-21 11:51:22 +080033
samueljccda82eb82015-10-07 16:29:52 -070034 <modules>
35 <module>vtnrsc</module>
36 <module>vtnmgr</module>
37 <module>vtnweb</module>
38 <module>app</module>
Phaneendra Mandabcdb7c92015-11-13 19:26:34 +053039 </modules>
40 <dependencies>
41 <dependency>
samueljcc5ede4532015-10-27 16:44:53 -070042 <groupId>org.onosproject</groupId>
43 <artifactId>onlab-junit</artifactId>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>com.google.guava</groupId>
48 <artifactId>guava-testlib</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.easymock</groupId>
53 <artifactId>easymock</artifactId>
54 <scope>test</scope>
55 </dependency>
56 </dependencies>
samuele4e75052015-07-21 11:51:22 +080057</project>