blob: 43bbdbd1192b9a2635fa35e440c23984bff3a6e2 [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>
Ray Milkey78ce4002018-08-10 11:16:44 -070025 <version>1.14.0-b1</version>
Davide Sanvito05983ba2017-12-01 11:46:44 +010026 </parent>
27
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070028 <artifactId>onos-apps-imr-api</artifactId>
Davide Sanvito05983ba2017-12-01 11:46:44 +010029 <packaging>bundle</packaging>
30
31 <description>Intent Monitoring and Rerouting application REST</description>
32
33 <properties>
34 <web.context>/onos/v1/imr</web.context>
35 <api.version>1.0.0</api.version>
36 <api.title>IMR Server REST API</api.title>
37 <api.description>
38 APIs for interacting with the IMR application.
39 </api.description>
40 <api.package>org.onosproject.imr.rest</api.package>
41 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070046 <artifactId>onos-apps-imr-app</artifactId>
Davide Sanvito05983ba2017-12-01 11:46:44 +010047 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>javax.ws.rs</groupId>
52 <artifactId>javax.ws.rs-api</artifactId>
Davide Sanvito05983ba2017-12-01 11:46:44 +010053 </dependency>
54
55 <dependency>
56 <groupId>com.fasterxml.jackson.core</groupId>
57 <artifactId>jackson-databind</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-junit</artifactId>
63 <scope>test</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.osgi</groupId>
73 <artifactId>org.osgi.core</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onlab-misc</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-api</artifactId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070083 <classifier>tests</classifier>
Davide Sanvito05983ba2017-12-01 11:46:44 +010084 <scope>test</scope>
85 </dependency>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070086
Davide Sanvito05983ba2017-12-01 11:46:44 +010087 <dependency>
88 <groupId>org.glassfish.jersey.containers</groupId>
89 <artifactId>jersey-container-servlet-core</artifactId>
90 <scope>compile</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.commons</groupId>
94 <artifactId>commons-lang3</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.karaf.shell</groupId>
98 <artifactId>org.apache.karaf.shell.console</artifactId>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.onosproject</groupId>
103 <artifactId>onos-cli</artifactId>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -0700104 <version>${project.version}</version>
Davide Sanvito05983ba2017-12-01 11:46:44 +0100105 </dependency>
106
107 </dependencies>
108
109</project>