blob: 3b77d5b43630f8d8a83b59050a8367b2f4688aec [file] [log] [blame]
Ray Milkeyb7f0f642016-01-22 16:08:14 -08001<?xml version="1.0" encoding="UTF-8"?>
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 -->
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'Connor955c3162016-03-10 15:27:19 -080023 <version>1.6.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'Connor955c3162016-03-10 15:27:19 -080043 <version>1.6.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>
49 <version>4.11</version>
50 <scope>test</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.easymock</groupId>
55 <artifactId>easymock</artifactId>
56 <scope>test</scope>
57 </dependency>
Ray Milkeycd6ab182016-02-03 11:13:09 -080058
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 <version>${project.version}</version>
63 <classifier>tests</classifier>
64 <scope>test</scope>
65 </dependency>
66
Ray Milkeyb7f0f642016-01-22 16:08:14 -080067 </dependencies>
68
69</project>