Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Matteo Scandolo | aa2adde | 2021-09-13 12:45:32 -0700 | [diff] [blame] | 3 | ~ Copyright 2021 Open Networking Foundation |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 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 | <parent> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 21 | <artifactId>olt</artifactId> |
Matteo Scandolo | aa2adde | 2021-09-13 12:45:32 -0700 | [diff] [blame] | 22 | <groupId>org.opencord</groupId> |
Jenkins | e9634f0 | 2022-10-06 15:23:01 +0000 | [diff] [blame] | 23 | <version>5.2.3-SNAPSHOT</version> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 24 | </parent> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <artifactId>olt-web</artifactId> |
| 27 | <packaging>bundle</packaging> |
| 28 | <description>REST API for OLT application for CORD</description> |
| 29 | |
| 30 | <properties> |
| 31 | <web.context>/onos/olt</web.context> |
| 32 | <api.version>1.0.0</api.version> |
| 33 | <api.title>ONOS OLT REST API</api.title> |
| 34 | <api.description> |
| 35 | APIs for interacting with the CORD OLT application. |
| 36 | </api.description> |
| 37 | <api.package>org.opencord.olt.rest</api.package> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 38 | </properties> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 41 | <groupId>javax.ws.rs</groupId> |
| 42 | <artifactId>javax.ws.rs-api</artifactId> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
Matteo Scandolo | aa2adde | 2021-09-13 12:45:32 -0700 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.opencord</groupId> |
Gustavo Silva | 29fb20e | 2022-05-26 09:59:54 -0300 | [diff] [blame] | 47 | <artifactId>sadis-api</artifactId> |
| 48 | <version>${sadis.api.version}</version> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.opencord</groupId> |
Matteo Scandolo | aa2adde | 2021-09-13 12:45:32 -0700 | [diff] [blame] | 53 | <artifactId>olt-api</artifactId> |
Andrea Campanella | 3ec01a5 | 2021-12-27 17:20:51 +0100 | [diff] [blame] | 54 | <version>${olt.api.version}</version> |
Matteo Scandolo | aa2adde | 2021-09-13 12:45:32 -0700 | [diff] [blame] | 55 | <scope>compile</scope> |
| 56 | </dependency> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 57 | </dependencies> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onos-maven-plugin</artifactId> |
| 63 | </plugin> |
| 64 | |
| 65 | <plugin> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>maven-bundle-plugin</artifactId> |
| 68 | <configuration> |
| 69 | <instructions> |
| 70 | <_wab>src/main/webapp/</_wab> |
| 71 | <Include-Resource> |
| 72 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 73 | {maven-resources} |
| 74 | </Include-Resource> |
| 75 | <Import-Package> |
| 76 | *,org.glassfish.jersey.servlet |
| 77 | </Import-Package> |
| 78 | <Web-ContextPath>${web.context}</Web-ContextPath> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 79 | </instructions> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
Gustavo Silva | 4c305b3 | 2022-09-19 13:33:03 -0300 | [diff] [blame] | 84 | </project> |