blob: e4528517c9a64ad88bada4b0d14c61c9970a388b [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'Connor6b770712015-12-15 15:48:01 -080025 <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>
Mahesh Poojary S335e7c32015-10-29 10:16:51 +053035 <module>sfcmgr</module>
samueljccda82eb82015-10-07 16:29:52 -070036 <module>vtnrsc</module>
37 <module>vtnmgr</module>
38 <module>vtnweb</module>
39 <module>app</module>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053040 </modules>
41 <dependencies>
42 <dependency>
samueljcc5ede4532015-10-27 16:44:53 -070043 <groupId>org.onosproject</groupId>
44 <artifactId>onlab-junit</artifactId>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>com.google.guava</groupId>
49 <artifactId>guava-testlib</artifactId>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.easymock</groupId>
54 <artifactId>easymock</artifactId>
55 <scope>test</scope>
56 </dependency>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053057 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-osgi</artifactId>
60 <classifier>tests</classifier>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
Phaneendra Mandabc7c6942015-12-03 16:33:24 +053064 <groupId>org.onosproject</groupId>
65 <artifactId>onos-api</artifactId>
66 <scope>test</scope>
67 <classifier>tests</classifier>
68 </dependency>
69 <dependency>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053070 <groupId>com.sun.jersey</groupId>
71 <artifactId>jersey-servlet</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>com.sun.jersey.jersey-test-framework</groupId>
75 <artifactId>jersey-test-framework-core</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>com.sun.jersey.jersey-test-framework</groupId>
80 <artifactId>jersey-test-framework-grizzly2</artifactId>
81 <scope>test</scope>
82 </dependency>
samueljcc5ede4532015-10-27 16:44:53 -070083 </dependencies>
samuele4e75052015-07-21 11:51:22 +080084</project>