blob: d9eb6df8cb05a6e8d111bd3b23305f8dd987ea43 [file] [log] [blame]
Davide Sanvito05983ba2017-12-01 11:46:44 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
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 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070024 <artifactId>onos-apps-imr</artifactId>
ONOS Jenkins User3594c242018-08-14 22:13:02 +000025 <version>1.14.0-rc2</version>
Davide Sanvito05983ba2017-12-01 11:46:44 +010026 </parent>
27
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070028 <artifactId>onos-apps-imr-app</artifactId>
Davide Sanvito05983ba2017-12-01 11:46:44 +010029 <packaging>bundle</packaging>
30
31 <description>Intent Monitoring and Rerouting application</description>
32
33 <dependencies>
34
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onlab-junit</artifactId>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onlab-misc</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070055 <classifier>tests</classifier>
Davide Sanvito05983ba2017-12-01 11:46:44 +010056 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
Davide Sanvito05983ba2017-12-01 11:46:44 +010060 <artifactId>onos-incubator-api</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
Yuta HIGUCHI47960ef2018-04-13 17:41:10 -070064 <artifactId>onos-core-dist</artifactId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070065 <version>${project.version}</version>
Davide Sanvito05983ba2017-12-01 11:46:44 +010066 </dependency>
67 <dependency>
68 <groupId>org.apache.commons</groupId>
69 <artifactId>commons-lang3</artifactId>
70 </dependency>
71 </dependencies>
72
73</project>