blob: 590342a8c74bbcad994ae93fffa1975e46145cc4 [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>
24 <artifactId>onos-imr</artifactId>
25 <version>1.13.0-SNAPSHOT</version>
26 </parent>
27
28 <artifactId>onos-app-imr-api</artifactId>
29 <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>
46 <artifactId>onos-app-imr-app</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>javax.ws.rs</groupId>
52 <artifactId>javax.ws.rs-api</artifactId>
53 <version>2.0.1</version>
54 </dependency>
55
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-databind</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-junit</artifactId>
64 <scope>test</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-api</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.osgi</groupId>
74 <artifactId>org.osgi.core</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onlab-misc</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-api</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-api</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.glassfish.jersey.containers</groupId>
92 <artifactId>jersey-container-servlet-core</artifactId>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.commons</groupId>
97 <artifactId>commons-lang3</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.apache.karaf.shell</groupId>
101 <artifactId>org.apache.karaf.shell.console</artifactId>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onos-cli</artifactId>
107 <version>1.13.0-SNAPSHOT</version>
108 </dependency>
109
110 </dependencies>
111
112</project>