blob: 608cc5d6f582cb89b90dda49889715e144041f20 [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. Bainbridge12e0a2c2017-08-10 09:12:56 -070023 <version>1.2.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>
David K. Bainbridge12e0a2c2017-08-10 09:12:56 -070040 <api.package>org.onosproject.olt.rest</api.package>
41 <olt.api.version>1.2.0-SNAPSHOT</olt.api.version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080042 </properties>
43
44 <dependencies>
45 <dependency>
alshabib36a4d732016-06-01 16:03:59 -070046 <groupId>org.opencord</groupId>
47 <artifactId>olt-api</artifactId>
David K. Bainbridge12e0a2c2017-08-10 09:12:56 -070048 <version>${olt.api.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080049 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-cli</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070054 <version>${onos.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080055 </dependency>
56
57 <dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080058 <groupId>org.onosproject</groupId>
59 <artifactId>onos-rest</artifactId>
alshabib36a4d732016-06-01 16:03:59 -070060 <version>${onos.version}</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080061 </dependency>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080062 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
alshabib36a4d732016-06-01 16:03:59 -070067 <groupId>org.onosproject</groupId>
68 <artifactId>onos-maven-plugin</artifactId>
69 </plugin>
70 <plugin>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080071 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
73 <extensions>true</extensions>
74 <configuration>
75 <instructions>
76 <_wab>src/main/webapp/</_wab>
77 <Include-Resource>
78 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
79 {maven-resources}
80 </Include-Resource>
81 <Bundle-SymbolicName>
82 ${project.groupId}.${project.artifactId}
83 </Bundle-SymbolicName>
84 <Import-Package>
Brian O'Connor864bdf02016-04-04 14:00:37 -070085 *,org.glassfish.jersey.servlet
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080086 </Import-Package>
87 <Web-ContextPath>${web.context}</Web-ContextPath>
88 </instructions>
89 </configuration>
90 </plugin>
Jonathan Hart98ec6692016-07-06 10:40:21 -070091 <plugin>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-scr-plugin</artifactId>
94 <version>1.21.0</version>
95 <executions>
96 <execution>
97 <id>generate-scr-srcdescriptor</id>
98 <goals>
99 <goal>scr</goal>
100 </goals>
101 </execution>
102 </executions>
103 <configuration>
104 <supportedProjectTypes>
105 <supportedProjectType>bundle</supportedProjectType>
106 <supportedProjectType>war</supportedProjectType>
107 </supportedProjectTypes>
108 </configuration>
109 </plugin>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800110 </plugins>
111 </build>
112</project>