blob: 601ec3fd9c0bb46e4b92e017e6829321719fa6d9 [file] [log] [blame]
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connord6a135a2017-08-03 22:46:05 -07003 ~ Copyright 2016-present Open Networking Foundation
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -08004 ~
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>
alshabib36a4d732016-06-01 16:03:59 -070021 <groupId>org.opencord</groupId>
22 <artifactId>olt</artifactId>
Jenkins2bc13b92020-07-06 16:10:40 +000023 <version>4.1.1</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080024 <relativePath>../pom.xml</relativePath>
25 </parent>
Carmelo Casconeca931162019-07-15 18:22:24 -070026
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080027 <modelVersion>4.0.0</modelVersion>
alshabib36a4d732016-06-01 16:03:59 -070028 <artifactId>olt-app</artifactId>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080029 <packaging>bundle</packaging>
30 <description>OLT application for CORD</description>
31
32 <properties>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080033 <web.context>/onos/olt</web.context>
34 <api.version>1.0.0</api.version>
35 <api.title>ONOS OLT REST API</api.title>
36 <api.description>
37 APIs for interacting with the CORD OLT application.
38 </api.description>
Jonathan Hart1d34c8b2018-05-05 15:37:28 -070039 <onos.app.name>org.opencord.olt</onos.app.name>
40 <onos.app.title>OLT Access Management</onos.app.title>
41 <onos.app.origin>OpenCord</onos.app.origin>
42 <onos.app.category>default</onos.app.category>
43 <onos.app.url>http://opencord.org</onos.app.url>
Carmelo Casconeca931162019-07-15 18:22:24 -070044 <onos.app.readme>
45 CORD OLT Access management application
46 </onos.app.readme>
Jonathan Hartd7ab2aa2018-06-06 16:07:38 -070047 <api.package>org.opencord.olt.rest</api.package>
48 <olt.api.version>${project.version}</olt.api.version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080049 </properties>
50
51 <dependencies>
52 <dependency>
alshabib36a4d732016-06-01 16:03:59 -070053 <groupId>org.opencord</groupId>
54 <artifactId>olt-api</artifactId>
David K. Bainbridge12e0a2c2017-08-10 09:12:56 -070055 <version>${olt.api.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070056 <scope>compile</scope>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080057 </dependency>
58
59 <dependency>
Jonathan Hart1d34c8b2018-05-05 15:37:28 -070060 <groupId>org.opencord</groupId>
Amit Ghosh1ed9aef2018-07-17 17:08:16 +010061 <artifactId>sadis-api</artifactId>
Carmelo Casconeca931162019-07-15 18:22:24 -070062 <version>${sadis.api.version}</version>
63 <scope>provided</scope>
Amit Ghosh1ed9aef2018-07-17 17:08:16 +010064 </dependency>
65
66 <dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080067 <groupId>org.onosproject</groupId>
68 <artifactId>onos-cli</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070069 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070070 <scope>provided</scope>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080071 </dependency>
72
73 <dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080074 <groupId>org.onosproject</groupId>
Jonathan Hart4f178fa2020-02-03 10:46:01 -080075 <artifactId>onos-api</artifactId>
76 <version>${onos.version}</version>
77 <classifier>tests</classifier>
78 <scope>test</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
Carmelo Casconeca931162019-07-15 18:22:24 -070083 <artifactId>onos-core-serializers</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070084 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070085 <scope>provided</scope>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080086 </dependency>
Jonathan Hartda66a012018-05-02 17:30:05 -070087
88 <dependency>
89 <groupId>org.apache.karaf.shell</groupId>
90 <artifactId>org.apache.karaf.shell.console</artifactId>
Carmelo Casconeca931162019-07-15 18:22:24 -070091 <scope>provided</scope>
92 </dependency>
93
94 <dependency>
95 <groupId>org.apache.karaf.shell</groupId>
96 <artifactId>org.apache.karaf.shell.core</artifactId>
Carmelo Casconeca931162019-07-15 18:22:24 -070097 <scope>provided</scope>
98 </dependency>
99
100 <dependency>
Carmelo Casconeca931162019-07-15 18:22:24 -0700101 <groupId>javax.ws.rs</groupId>
102 <artifactId>javax.ws.rs-api</artifactId>
Carmelo Casconeca931162019-07-15 18:22:24 -0700103 <scope>provided</scope>
104 </dependency>
105
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800106 </dependencies>
107
108 <build>
109 <plugins>
110 <plugin>
alshabib36a4d732016-06-01 16:03:59 -0700111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-maven-plugin</artifactId>
113 </plugin>
Carmelo Casconeca931162019-07-15 18:22:24 -0700114
alshabib36a4d732016-06-01 16:03:59 -0700115 <plugin>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800118 <configuration>
119 <instructions>
120 <_wab>src/main/webapp/</_wab>
121 <Include-Resource>
122 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
123 {maven-resources}
124 </Include-Resource>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800125 <Import-Package>
Brian O'Connor864bdf02016-04-04 14:00:37 -0700126 *,org.glassfish.jersey.servlet
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800127 </Import-Package>
128 <Web-ContextPath>${web.context}</Web-ContextPath>
Carmelo Casconeca931162019-07-15 18:22:24 -0700129 <Karaf-Commands>org.opencord.olt.cli</Karaf-Commands>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800130 </instructions>
131 </configuration>
132 </plugin>
Carmelo Casconeca931162019-07-15 18:22:24 -0700133
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800134 </plugins>
135 </build>
136</project>