Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | d6a135a | 2017-08-03 22:46:05 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [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> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 21 | <groupId>org.opencord</groupId> |
| 22 | <artifactId>olt</artifactId> |
Matt Jeanneret | 3f57926 | 2018-06-14 17:16:23 -0400 | [diff] [blame] | 23 | <version>2.0.0-SNAPSHOT</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 24 | <relativePath>../pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 28 | <artifactId>olt-app</artifactId> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 29 | |
| 30 | <packaging>bundle</packaging> |
| 31 | <description>OLT application for CORD</description> |
| 32 | |
| 33 | <properties> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 34 | <web.context>/onos/olt</web.context> |
| 35 | <api.version>1.0.0</api.version> |
| 36 | <api.title>ONOS OLT REST API</api.title> |
| 37 | <api.description> |
| 38 | APIs for interacting with the CORD OLT application. |
| 39 | </api.description> |
Jonathan Hart | 1d34c8b | 2018-05-05 15:37:28 -0700 | [diff] [blame] | 40 | <onos.app.name>org.opencord.olt</onos.app.name> |
| 41 | <onos.app.title>OLT Access Management</onos.app.title> |
| 42 | <onos.app.origin>OpenCord</onos.app.origin> |
| 43 | <onos.app.category>default</onos.app.category> |
| 44 | <onos.app.url>http://opencord.org</onos.app.url> |
| 45 | <onos.app.readme>CORD OLT Access management application</onos.app.readme> |
Jonathan Hart | d7ab2aa | 2018-06-06 16:07:38 -0700 | [diff] [blame] | 46 | <api.package>org.opencord.olt.rest</api.package> |
| 47 | <olt.api.version>${project.version}</olt.api.version> |
Amit Ghosh | 1ed9aef | 2018-07-17 17:08:16 +0100 | [diff] [blame] | 48 | <sadis.api.version>2.1.0</sadis.api.version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 49 | </properties> |
| 50 | |
| 51 | <dependencies> |
| 52 | <dependency> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 53 | <groupId>org.opencord</groupId> |
| 54 | <artifactId>olt-api</artifactId> |
David K. Bainbridge | 12e0a2c | 2017-08-10 09:12:56 -0700 | [diff] [blame] | 55 | <version>${olt.api.version}</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
Jonathan Hart | 1d34c8b | 2018-05-05 15:37:28 -0700 | [diff] [blame] | 59 | <groupId>org.opencord</groupId> |
Amit Ghosh | 1ed9aef | 2018-07-17 17:08:16 +0100 | [diff] [blame] | 60 | <artifactId>sadis-api</artifactId> |
| 61 | <version>${sadis.api.version}</version> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onos-cli</artifactId> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 67 | <version>${onos.version}</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 71 | <groupId>org.onosproject</groupId> |
| 72 | <artifactId>onos-rest</artifactId> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 73 | <version>${onos.version}</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 74 | </dependency> |
Jonathan Hart | da66a01 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 75 | |
| 76 | <dependency> |
| 77 | <groupId>org.apache.karaf.shell</groupId> |
| 78 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 79 | </dependency> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 80 | </dependencies> |
| 81 | |
| 82 | <build> |
| 83 | <plugins> |
| 84 | <plugin> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onos-maven-plugin</artifactId> |
Jonathan Hart | da66a01 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 87 | <version>1.11</version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 88 | </plugin> |
| 89 | <plugin> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 90 | <groupId>org.apache.felix</groupId> |
| 91 | <artifactId>maven-bundle-plugin</artifactId> |
| 92 | <extensions>true</extensions> |
| 93 | <configuration> |
| 94 | <instructions> |
| 95 | <_wab>src/main/webapp/</_wab> |
| 96 | <Include-Resource> |
| 97 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 98 | {maven-resources} |
| 99 | </Include-Resource> |
| 100 | <Bundle-SymbolicName> |
| 101 | ${project.groupId}.${project.artifactId} |
| 102 | </Bundle-SymbolicName> |
| 103 | <Import-Package> |
Brian O'Connor | 864bdf0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 104 | *,org.glassfish.jersey.servlet |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 105 | </Import-Package> |
| 106 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 107 | </instructions> |
| 108 | </configuration> |
| 109 | </plugin> |
Jonathan Hart | 98ec669 | 2016-07-06 10:40:21 -0700 | [diff] [blame] | 110 | <plugin> |
| 111 | <groupId>org.apache.felix</groupId> |
| 112 | <artifactId>maven-scr-plugin</artifactId> |
| 113 | <version>1.21.0</version> |
| 114 | <executions> |
| 115 | <execution> |
| 116 | <id>generate-scr-srcdescriptor</id> |
| 117 | <goals> |
| 118 | <goal>scr</goal> |
| 119 | </goals> |
| 120 | </execution> |
| 121 | </executions> |
| 122 | <configuration> |
| 123 | <supportedProjectTypes> |
| 124 | <supportedProjectType>bundle</supportedProjectType> |
| 125 | <supportedProjectType>war</supportedProjectType> |
| 126 | </supportedProjectTypes> |
| 127 | </configuration> |
| 128 | </plugin> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 129 | </plugins> |
| 130 | </build> |
| 131 | </project> |