tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ~ Copyright 2014 Open Networking Laboratory |
| 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 | --> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 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/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 24 | <artifactId>onos-core</artifactId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-core-net</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>ONOS network control core subsystems</description> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 36 | <groupId>org.onosproject</groupId> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 37 | <artifactId>onos-api</artifactId> |
| 38 | </dependency> |
tom | be98831 | 2014-09-19 18:38:47 -0700 | [diff] [blame] | 39 | |
| 40 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 41 | <groupId>org.onosproject</groupId> |
tom | ca90c46 | 2014-09-22 11:40:58 -0700 | [diff] [blame] | 42 | <artifactId>onos-api</artifactId> |
| 43 | <classifier>tests</classifier> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 48 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | c97aa61 | 2015-06-23 16:00:18 -0700 | [diff] [blame] | 49 | <artifactId>onos-core-common</artifactId> |
tom | be98831 | 2014-09-19 18:38:47 -0700 | [diff] [blame] | 50 | <version>${project.version}</version> |
Brian O'Connor | 47bc855 | 2015-02-11 11:03:32 -0800 | [diff] [blame] | 51 | </dependency> |
| 52 | |
Thomas Vachuska | 0a608ac | 2014-10-16 11:15:59 -0700 | [diff] [blame] | 53 | <dependency> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 54 | <groupId>org.onosproject</groupId> |
ssyoon90 | a98825a | 2015-08-26 00:48:15 +0900 | [diff] [blame] | 55 | <version>${project.version}</version> |
| 56 | <artifactId>onos-cli</artifactId> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-cli</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <classifier>tests</classifier> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 69 | <artifactId>onos-core-common</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | <classifier>tests</classifier> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
Sahil Lele | 3a0cdd5 | 2015-07-21 14:16:31 -0700 | [diff] [blame] | 76 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 4998caa | 2015-08-26 13:28:38 -0700 | [diff] [blame] | 77 | <artifactId>onos-core-dist</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
Sahil Lele | 3a0cdd5 | 2015-07-21 14:16:31 -0700 | [diff] [blame] | 84 | <artifactId>onos-incubator-api</artifactId> |
| 85 | <scope>test</scope> |
| 86 | <classifier>tests</classifier> |
| 87 | <version>${project.version}</version> |
| 88 | </dependency> |
| 89 | |
| 90 | <dependency> |
Thomas Vachuska | 0a608ac | 2014-10-16 11:15:59 -0700 | [diff] [blame] | 91 | <groupId>org.easymock</groupId> |
| 92 | <artifactId>easymock</artifactId> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
Jonathan Hart | b4758a9 | 2014-09-24 10:46:45 -0700 | [diff] [blame] | 95 | |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 96 | <dependency> |
Sahil Lele | 3a0cdd5 | 2015-07-21 14:16:31 -0700 | [diff] [blame] | 97 | <groupId>org.onosproject</groupId> |
| 98 | <artifactId>onos-incubator-api</artifactId> |
| 99 | </dependency> |
| 100 | |
| 101 | <dependency> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 102 | <groupId>org.apache.karaf.features</groupId> |
| 103 | <artifactId>org.apache.karaf.features.core</artifactId> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 104 | </dependency> |
Thomas Vachuska | de563cf | 2015-04-01 00:28:50 -0700 | [diff] [blame] | 105 | |
| 106 | <dependency> |
| 107 | <groupId>org.apache.karaf.system</groupId> |
| 108 | <artifactId>org.apache.karaf.system.core</artifactId> |
| 109 | </dependency> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 110 | </dependencies> |
| 111 | |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 112 | </project> |