blob: 8eba68014e4649356bcad9e52f7954285058c77e [file] [log] [blame]
Ray Milkeyb7f0f642016-01-22 16:08:14 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2016-present Open Networking Laboratory
Ray Milkeyb7f0f642016-01-22 16:08:14 -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-providers</artifactId>
22 <groupId>org.onosproject</groupId>
Brian O'Connorbfc02ec2016-09-16 00:42:37 -070023 <version>1.8.0-SNAPSHOT</version>
Ray Milkeyb7f0f642016-01-22 16:08:14 -080024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>onos-netcfg-links-provider</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>
31 Links provider that uses network config service to predefine devices and links.
32 </description>
Ray Milkeyb7f0f642016-01-22 16:08:14 -080033
34 <dependencies>
Ray Milkeyb7f0f642016-01-22 16:08:14 -080035 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onlab-osgi</artifactId>
38 </dependency>
39
40 <dependency>
Ray Milkey957390e2016-02-09 10:02:46 -080041 <groupId>org.onosproject</groupId>
42 <artifactId>onos-lldp-provider-common</artifactId>
Brian O'Connorbfc02ec2016-09-16 00:42:37 -070043 <version>1.8.0-SNAPSHOT</version>
Ray Milkey957390e2016-02-09 10:02:46 -080044 </dependency>
45
46 <dependency>
Ray Milkeyb7f0f642016-01-22 16:08:14 -080047 <groupId>junit</groupId>
48 <artifactId>junit</artifactId>
Ray Milkeyb7f0f642016-01-22 16:08:14 -080049 <scope>test</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.easymock</groupId>
54 <artifactId>easymock</artifactId>
55 <scope>test</scope>
56 </dependency>
Ray Milkeycd6ab182016-02-03 11:13:09 -080057
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
Ray Milkeycd6ab182016-02-03 11:13:09 -080061 <classifier>tests</classifier>
62 <scope>test</scope>
63 </dependency>
64
Ray Milkeyb7f0f642016-01-22 16:08:14 -080065 </dependencies>
66
67</project>