blob: 4de1240de95846c817708b1472e49bafadda0c91 [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<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Ray Milkey33092a52017-12-22 13:19:48 -080025 <version>1.11.2-rc2</version>
samuele4e75052015-07-21 11:51:22 +080026 </parent>
27
28 <artifactId>onos-app-vtn</artifactId>
samueljccda82eb82015-10-07 16:29:52 -070029 <packaging>pom</packaging>
samuele4e75052015-07-21 11:51:22 +080030
samueljccda82eb82015-10-07 16:29:52 -070031 <description>ONOS framework applications</description>
samuele4e75052015-07-21 11:51:22 +080032
samueljccda82eb82015-10-07 16:29:52 -070033 <modules>
Mahesh Poojary S335e7c32015-10-29 10:16:51 +053034 <module>sfcmgr</module>
samueljccda82eb82015-10-07 16:29:52 -070035 <module>vtnrsc</module>
36 <module>vtnmgr</module>
37 <module>vtnweb</module>
rama-huaweic78f3092016-05-19 18:09:29 +053038 <module>sfcweb</module>
samueljccda82eb82015-10-07 16:29:52 -070039 <module>app</module>
rama-huaweic78f3092016-05-19 18:09:29 +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>
Jian Li9d616492016-03-09 10:52:49 -080070 <groupId>org.glassfish.jersey.containers</groupId>
71 <artifactId>jersey-container-servlet</artifactId>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053072 </dependency>
73 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080074 <groupId>org.glassfish.jersey.test-framework</groupId>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053075 <artifactId>jersey-test-framework-core</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080079 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
Jian Li4fb71772016-04-20 09:41:56 -070080 <artifactId>jersey-test-framework-provider-jetty</artifactId>
Bharat saraswalf215b0c2015-11-14 15:58:46 +053081 <scope>test</scope>
82 </dependency>
samueljcc5ede4532015-10-27 16:44:53 -070083 </dependencies>
samuele4e75052015-07-21 11:51:22 +080084</project>