blob: c86af817a0ec7d0709f7d4e058e5eeca4e56c049 [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>
David K. Bainbridgec991d582017-09-08 12:03:43 -070023 <version>1.4.0-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080024 <relativePath>../pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
alshabib36a4d732016-06-01 16:03:59 -070028 <artifactId>olt-app</artifactId>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080029
30 <packaging>bundle</packaging>
31 <description>OLT application for CORD</description>
32
33 <properties>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080034 <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 Hart1d34c8b2018-05-05 15:37:28 -070040 <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 Hartd7ab2aa2018-06-06 16:07:38 -070046 <api.package>org.opencord.olt.rest</api.package>
47 <olt.api.version>${project.version}</olt.api.version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080048 </properties>
49
50 <dependencies>
51 <dependency>
alshabib36a4d732016-06-01 16:03:59 -070052 <groupId>org.opencord</groupId>
53 <artifactId>olt-api</artifactId>
David K. Bainbridge12e0a2c2017-08-10 09:12:56 -070054 <version>${olt.api.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080055 </dependency>
56
57 <dependency>
Jonathan Hart1d34c8b2018-05-05 15:37:28 -070058 <groupId>org.opencord</groupId>
59 <artifactId>olt-kafka</artifactId>
60 <version>${olt.api.version}</version>
61 </dependency>
62
63 <dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080064 <groupId>org.onosproject</groupId>
65 <artifactId>onos-cli</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070066 <version>${onos.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080067 </dependency>
68
69 <dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080070 <groupId>org.onosproject</groupId>
71 <artifactId>onos-rest</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070072 <version>${onos.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080073 </dependency>
Jonathan Hartda66a012018-05-02 17:30:05 -070074
75 <dependency>
76 <groupId>org.apache.karaf.shell</groupId>
77 <artifactId>org.apache.karaf.shell.console</artifactId>
78 </dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080079 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
alshabib36a4d732016-06-01 16:03:59 -070084 <groupId>org.onosproject</groupId>
85 <artifactId>onos-maven-plugin</artifactId>
Jonathan Hartda66a012018-05-02 17:30:05 -070086 <version>1.11</version>
alshabib36a4d732016-06-01 16:03:59 -070087 </plugin>
88 <plugin>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080089 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-bundle-plugin</artifactId>
91 <extensions>true</extensions>
92 <configuration>
93 <instructions>
94 <_wab>src/main/webapp/</_wab>
95 <Include-Resource>
96 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
97 {maven-resources}
98 </Include-Resource>
99 <Bundle-SymbolicName>
100 ${project.groupId}.${project.artifactId}
101 </Bundle-SymbolicName>
102 <Import-Package>
Brian O'Connor864bdf02016-04-04 14:00:37 -0700103 *,org.glassfish.jersey.servlet
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800104 </Import-Package>
105 <Web-ContextPath>${web.context}</Web-ContextPath>
106 </instructions>
107 </configuration>
108 </plugin>
Jonathan Hart98ec6692016-07-06 10:40:21 -0700109 <plugin>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>maven-scr-plugin</artifactId>
112 <version>1.21.0</version>
113 <executions>
114 <execution>
115 <id>generate-scr-srcdescriptor</id>
116 <goals>
117 <goal>scr</goal>
118 </goals>
119 </execution>
120 </executions>
121 <configuration>
122 <supportedProjectTypes>
123 <supportedProjectType>bundle</supportedProjectType>
124 <supportedProjectType>war</supportedProjectType>
125 </supportedProjectTypes>
126 </configuration>
127 </plugin>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800128 </plugins>
129 </build>
130</project>