Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
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> |
Thomas Vachuska | 5e1f42d | 2016-06-16 20:07:09 -0700 | [diff] [blame^] | 23 | <version>1.6.0-rc3</version> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <artifactId>onos-app-routing</artifactId> |
| 28 | |
| 29 | <packaging>bundle</packaging> |
| 30 | <description>Libraries for routing applications</description> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.onosproject</groupId> |
| 35 | <artifactId>onos-app-routing-api</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
| 38 | |
| 39 | <dependency> |
| 40 | <groupId>org.onosproject</groupId> |
gaurav | 3678593 | 2016-03-10 17:24:04 +0530 | [diff] [blame] | 41 | <artifactId>onos-app-routing-api</artifactId> |
| 42 | <scope>test</scope> |
| 43 | <classifier>tests</classifier> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
gaurav | 164cf6d | 2016-03-25 21:43:04 +0530 | [diff] [blame] | 49 | <artifactId>onos-incubator-api</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <scope>test</scope> |
| 52 | <classifier>tests</classifier> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 57 | <artifactId>onos-cli</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 61 | <!-- FIXME: not OSGi-ready --> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 62 | <dependency> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 63 | <groupId>com.googlecode.concurrent-trees</groupId> |
| 64 | <artifactId>concurrent-trees</artifactId> |
| 65 | <scope>compile</scope> |
Jonathan Hart | e6f8400 | 2015-02-19 10:24:28 -0800 | [diff] [blame] | 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onlab-misc</artifactId> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>com.fasterxml.jackson.core</groupId> |
| 75 | <artifactId>jackson-annotations</artifactId> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>com.fasterxml.jackson.core</groupId> |
| 80 | <artifactId>jackson-databind</artifactId> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>com.google.guava</groupId> |
| 85 | <artifactId>guava</artifactId> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
Jonathan Hart | e6f8400 | 2015-02-19 10:24:28 -0800 | [diff] [blame] | 89 | <groupId>org.apache.commons</groupId> |
| 90 | <artifactId>commons-lang3</artifactId> |
| 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>io.netty</groupId> |
| 95 | <artifactId>netty</artifactId> |
Jonathan Hart | e6f8400 | 2015-02-19 10:24:28 -0800 | [diff] [blame] | 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
Jonathan Hart | d24fafb | 2015-02-09 17:55:32 -0800 | [diff] [blame] | 99 | <groupId>org.osgi</groupId> |
| 100 | <artifactId>org.osgi.compendium</artifactId> |
| 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 104 | <groupId>org.apache.karaf.shell</groupId> |
| 105 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 106 | </dependency> |
| 107 | |
| 108 | <dependency> |
| 109 | <groupId>org.osgi</groupId> |
| 110 | <artifactId>org.osgi.core</artifactId> |
| 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
| 114 | <groupId>org.onosproject</groupId> |
| 115 | <artifactId>onlab-junit</artifactId> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>org.easymock</groupId> |
| 121 | <artifactId>easymock</artifactId> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | |
Jonathan Hart | 6af92be | 2016-01-05 20:52:25 -0800 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>org.onosproject</groupId> |
| 127 | <artifactId>onos-api</artifactId> |
| 128 | <version>${project.version}</version> |
| 129 | <scope>test</scope> |
| 130 | <classifier>tests</classifier> |
| 131 | </dependency> |
Jonathan Hart | 41349e9 | 2015-02-09 14:14:02 -0800 | [diff] [blame] | 132 | </dependencies> |
| 133 | |
| 134 | </project> |