blob: a27aea4993fafa99db9da412b6e478ab7755a7ad [file] [log] [blame]
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
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>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-olt</artifactId>
Brian O'Connor5dc74922016-03-10 15:27:19 -080023 <version>1.6.0-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080024 <relativePath>../pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-app-olt</artifactId>
29
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>
40 <api.package>org.onosproject.olt.rest</api.package>
41 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-app-olt-api</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-cli</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.karaf.shell</groupId>
58 <artifactId>org.apache.karaf.shell.console</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-rest</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-rest</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>javax.ws.rs</groupId>
Jian Li6c739a22016-03-09 10:52:49 -080072 <artifactId>javax.ws.rs-api</artifactId>
73 <version>2.0.1</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080074 </dependency>
75 <dependency>
Jian Li6c739a22016-03-09 10:52:49 -080076 <groupId>org.glassfish.jersey.containers</groupId>
77 <artifactId>jersey-container-servlet</artifactId>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080078 </dependency>
79 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-databind</artifactId>
82 </dependency>
83
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-annotations</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.compendium</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.osgi</groupId>
95 <artifactId>org.osgi.core</artifactId>
96 </dependency>
97 </dependencies>
98
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-bundle-plugin</artifactId>
104 <extensions>true</extensions>
105 <configuration>
106 <instructions>
107 <_wab>src/main/webapp/</_wab>
108 <Include-Resource>
109 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
110 {maven-resources}
111 </Include-Resource>
112 <Bundle-SymbolicName>
113 ${project.groupId}.${project.artifactId}
114 </Bundle-SymbolicName>
115 <Import-Package>
Brian O'Connor864bdf02016-04-04 14:00:37 -0700116 *,org.glassfish.jersey.servlet
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -0800117 </Import-Package>
118 <Web-ContextPath>${web.context}</Web-ContextPath>
119 </instructions>
120 </configuration>
121 </plugin>
122 </plugins>
123 </build>
124</project>