blob: 7c88328bea190343f55cc9ffeae5a29d1de8451f [file] [log] [blame]
Yixiao Chen68bfab22016-11-11 11:04:10 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Yixiao Chen68bfab22016-11-11 11:04:10 -05004 ~
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 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-tetopology</artifactId>
Ray Milkey1e6d39a2017-09-15 11:50:13 -070024 <version>1.11.1</version>
Yixiao Chen68bfab22016-11-11 11:04:10 -050025 </parent>
26
27 <artifactId>onos-app-tetopology</artifactId>
Ray Milkey1e6d39a2017-09-15 11:50:13 -070028 <version>1.11.1</version>
Yixiao Chen68bfab22016-11-11 11:04:10 -050029 <packaging>bundle</packaging>
30
31 <description>IETF TE topology application</description>
32
33 <dependencies>
34
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-app-tetopology-api</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-core-serializers</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onlab-junit</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>com.google.guava</groupId>
52 <artifactId>guava-testlib</artifactId>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.easymock</groupId>
57 <artifactId>easymock</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-osgi</artifactId>
63 <classifier>tests</classifier>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <scope>test</scope>
70 <classifier>tests</classifier>
71 </dependency>
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-core-common</artifactId>
75 <version>${project.version}</version>
76 <classifier>tests</classifier>
77 <scope>test</scope>
78 </dependency>
79
80 </dependencies>
81</project>