blob: 54d0507279d91c4dd89bd5f5c4fb7840e3151033 [file] [log] [blame]
Amit Ghoshc29c7a92017-08-01 09:59:13 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor180c1092017-08-03 22:46:14 -07003 ~ Copyright 2017-present Open Networking Foundation
Amit Ghoshc29c7a92017-08-01 09:59:13 +01004 ~
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 <groupId>org.opencord</groupId>
22 <artifactId>sadis</artifactId>
Jenkins72ea8e92021-07-09 18:56:13 +000023 <version>5.5.0-SNAPSHOT</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010024 <relativePath>../pom.xml</relativePath>
25 </parent>
Carmelo Cascone34059852019-09-30 19:33:00 -070026
Amit Ghoshc29c7a92017-08-01 09:59:13 +010027 <modelVersion>4.0.0</modelVersion>
28
29 <artifactId>sadis-app</artifactId>
30
31 <packaging>bundle</packaging>
32 <description>Subscriber and Device Information application for CORD</description>
33
34 <properties>
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000035 <web.context>/onos</web.context>
Jonathan Hartc3f14652018-06-07 09:23:49 -070036 <api.version>2.0.0</api.version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010037 <api.title>Subscriber And Device Information REST API</api.title>
38 <api.description>Subscriber And Device Information REST API</api.description>
39 <api.package>org.onosproject.sadis.rest</api.package>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-api</artifactId>
46 <version>${onos.version}</version>
47 <scope>test</scope>
48 <classifier>tests</classifier>
49 </dependency>
50
51 <dependency>
52 <groupId>org.opencord</groupId>
53 <artifactId>sadis-api</artifactId>
Ilayda Ozdemird0dab662021-02-23 10:36:33 +000054 <version>${sadis.api.version}</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010055 </dependency>
56
57 <dependency>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010058 <groupId>org.onosproject</groupId>
Carmelo Cascone34059852019-09-30 19:33:00 -070059 <artifactId>onos-cli</artifactId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010060 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070061 <scope>provided</scope>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010062 </dependency>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010063
64 <dependency>
65 <groupId>org.onosproject</groupId>
Carmelo Cascone34059852019-09-30 19:33:00 -070066 <artifactId>onos-core-common</artifactId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010067 <version>${onos.version}</version>
68 <scope>provided</scope>
69 </dependency>
70
71 <dependency>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010072 <groupId>org.onosproject</groupId>
73 <artifactId>onlab-rest</artifactId>
74 <version>${onos.version}</version>
75 <scope>provided</scope>
76 </dependency>
Jonathan Hart275ee252018-05-02 17:30:05 -070077
78 <dependency>
79 <groupId>org.apache.karaf.shell</groupId>
80 <artifactId>org.apache.karaf.shell.console</artifactId>
Carmelo Cascone34059852019-09-30 19:33:00 -070081 <scope>provided</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.apache.karaf.shell</groupId>
86 <artifactId>org.apache.karaf.shell.core</artifactId>
Carmelo Cascone34059852019-09-30 19:33:00 -070087 <scope>provided</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>com.fasterxml.jackson.core</groupId>
92 <artifactId>jackson-core</artifactId>
Ilayda Ozdemird0dab662021-02-23 10:36:33 +000093 <version>2.10.2</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070094 <scope>provided</scope>
95 </dependency>
96
97 <dependency>
98 <groupId>javax.ws.rs</groupId>
99 <artifactId>javax.ws.rs-api</artifactId>
Carmelo Cascone34059852019-09-30 19:33:00 -0700100 <scope>provided</scope>
Jonathan Hart275ee252018-05-02 17:30:05 -0700101 </dependency>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-maven-plugin</artifactId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100109 </plugin>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-bundle-plugin</artifactId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100113 <configuration>
114 <instructions>
115 <_wab>src/main/webapp/</_wab>
116 <Include-Resource>
117 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
118 {maven-resources}
119 </Include-Resource>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100120 <Import-Package>
121 *,org.glassfish.jersey.servlet
122 </Import-Package>
123 <Web-ContextPath>${web.context}</Web-ContextPath>
Carmelo Cascone34059852019-09-30 19:33:00 -0700124 <Karaf-Commands>org.opencord.sadis.cli</Karaf-Commands>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100125 </instructions>
126 </configuration>
127 </plugin>
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100128 </plugins>
129 </build>
Carmelo Cascone3d87d5f2019-11-14 14:19:12 -0800130
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100131</project>