blob: bfe163d7fdd032d566d2566bfeccf33a43d4e761 [file] [log] [blame]
Jonathan Hart41349e92015-02-09 14:14:02 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Jonathan Hart41349e92015-02-09 14:14:02 -08004 ~
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 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
Ray Milkey287b4ae2017-01-19 15:21:17 -080023 <version>1.9.0-SNAPSHOT</version>
Jonathan Hart41349e92015-02-09 14:14:02 -080024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
Jonathan Hartf4bd0482017-01-27 15:11:18 -080027 <artifactId>onos-app-routing-parent</artifactId>
Jonathan Hart41349e92015-02-09 14:14:02 -080028
Jonathan Hartf4bd0482017-01-27 15:11:18 -080029 <packaging>pom</packaging>
Jonathan Hart41349e92015-02-09 14:14:02 -080030 <description>Libraries for routing applications</description>
Jonathan Hartf4bd0482017-01-27 15:11:18 -080031 <modules>
32 <module>fibinstaller</module>
33 <module>common</module>
34 <module>cpr</module>
35 <module>fpm</module>
36 </modules>
Jonathan Hart41349e92015-02-09 14:14:02 -080037
38 <dependencies>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-app-routing-api</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
gaurav36785932016-03-10 17:24:04 +053047 <artifactId>onos-app-routing-api</artifactId>
48 <scope>test</scope>
49 <classifier>tests</classifier>
50 <version>${project.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
gaurav164cf6d2016-03-25 21:43:04 +053055 <artifactId>onos-incubator-api</artifactId>
56 <version>${project.version}</version>
57 <scope>test</scope>
58 <classifier>tests</classifier>
59 </dependency>
60
61 <dependency>
Jonathan Hartf4bd0482017-01-27 15:11:18 -080062 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
Jonathan Harte6f84002015-02-19 10:24:28 -080064 </dependency>
65
66 <dependency>
Jonathan Hartd24fafb2015-02-09 17:55:32 -080067 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.compendium</artifactId>
69 </dependency>
70
71 <dependency>
Jonathan Hart41349e92015-02-09 14:14:02 -080072 <groupId>org.onosproject</groupId>
73 <artifactId>onlab-junit</artifactId>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.easymock</groupId>
79 <artifactId>easymock</artifactId>
80 <scope>test</scope>
81 </dependency>
82
Jonathan Hart6af92be2016-01-05 20:52:25 -080083 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onos-api</artifactId>
Jonathan Hart6af92be2016-01-05 20:52:25 -080086 <scope>test</scope>
87 <classifier>tests</classifier>
88 </dependency>
Jonathan Hart41349e92015-02-09 14:14:02 -080089 </dependencies>
90
91</project>