Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 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 | --> |
| 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 Milkey | cc6ec60 | 2017-11-10 16:22:59 -0800 | [diff] [blame] | 23 | <version>1.12.0-SNAPSHOT</version> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 27 | <artifactId>onos-app-routing-parent</artifactId> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 28 | |
Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 29 | <packaging>pom</packaging> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 30 | <description>Libraries for routing applications</description> |
Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 31 | <modules> |
| 32 | <module>fibinstaller</module> |
| 33 | <module>common</module> |
| 34 | <module>cpr</module> |
| 35 | <module>fpm</module> |
| 36 | </modules> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 37 | |
| 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> |
gaurav | 3678593 | 2016-03-10 17:24:04 +0530 | [diff] [blame] | 47 | <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> |
gaurav | 164cf6d | 2016-03-25 21:43:04 +0530 | [diff] [blame] | 55 | <artifactId>onos-incubator-api</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | <scope>test</scope> |
| 58 | <classifier>tests</classifier> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 62 | <groupId>org.osgi</groupId> |
| 63 | <artifactId>org.osgi.core</artifactId> |
Jonathan Hart | e6f8400 | 2015-02-19 10:24:28 -0800 | [diff] [blame] | 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
Jonathan Hart | d24fafb | 2015-02-09 17:55:32 -0800 | [diff] [blame] | 67 | <groupId>org.osgi</groupId> |
| 68 | <artifactId>org.osgi.compendium</artifactId> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 72 | <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 Hart | 6af92be | 2016-01-05 20:52:25 -0800 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onos-api</artifactId> |
Jonathan Hart | 6af92be | 2016-01-05 20:52:25 -0800 | [diff] [blame] | 86 | <scope>test</scope> |
| 87 | <classifier>tests</classifier> |
| 88 | </dependency> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 89 | </dependencies> |
| 90 | |
| 91 | </project> |