blob: 8bd944b42de223a4f6c41f12b98fbcd08930d8b0 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Ray Milkey17481412015-12-09 09:16:26 -08003 ~ Copyright 2015 Open Networking Laboratory
alshabibf0e7e702015-05-30 18:22:36 -07004 ~
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"
Ray Milkey17481412015-12-09 09:16:26 -080019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
alshabibf0e7e702015-05-30 18:22:36 -070020 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-apps</artifactId>
Brian O'Connorb517abb2015-12-16 22:53:14 -080023 <version>1.5.0-SNAPSHOT</version>
alshabibf0e7e702015-05-30 18:22:36 -070024 <relativePath>../pom.xml</relativePath>
25 </parent>
Ray Milkey17481412015-12-09 09:16:26 -080026 <modelVersion>4.0.0</modelVersion>
alshabibf0e7e702015-05-30 18:22:36 -070027
28 <artifactId>onos-app-olt</artifactId>
alshabibf0e7e702015-05-30 18:22:36 -070029
Ray Milkey17481412015-12-09 09:16:26 -080030 <packaging>bundle</packaging>
31 <description>OLT application for CORD</description>
alshabibf0e7e702015-05-30 18:22:36 -070032
33 <properties>
34 <onos.app.name>org.onosproject.olt</onos.app.name>
Ray Milkey17481412015-12-09 09:16:26 -080035 <web.context>/onos/olt</web.context>
36 <api.version>1.0.0</api.version>
37 <api.title>ONOS OLT REST API</api.title>
38 <api.description>
39 APIs for interacting with the CORD OLT application.
40 </api.description>
41 <api.package>org.onosproject.olt</api.package>
alshabibf0e7e702015-05-30 18:22:36 -070042 </properties>
43
44 <dependencies>
Jonathan Harte533a422015-10-20 17:31:24 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-cli</artifactId>
48 <version>${project.version}</version>
49 </dependency>
Ray Milkey17481412015-12-09 09:16:26 -080050
Jonathan Harte533a422015-10-20 17:31:24 -070051 <dependency>
52 <groupId>org.apache.karaf.shell</groupId>
53 <artifactId>org.apache.karaf.shell.console</artifactId>
54 </dependency>
alshabibf0e7e702015-05-30 18:22:36 -070055 <dependency>
Ray Milkey17481412015-12-09 09:16:26 -080056 <groupId>org.onosproject</groupId>
57 <artifactId>onos-rest</artifactId>
58 <version>${project.version}</version>
alshabibf0e7e702015-05-30 18:22:36 -070059 </dependency>
60 <dependency>
Ray Milkey17481412015-12-09 09:16:26 -080061 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-rest</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>javax.ws.rs</groupId>
67 <artifactId>jsr311-api</artifactId>
68 <version>1.1.1</version>
69 </dependency>
70 <dependency>
71 <groupId>com.sun.jersey</groupId>
72 <artifactId>jersey-servlet</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-databind</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-annotations</artifactId>
82 </dependency>
83
84 <dependency>
alshabibf0e7e702015-05-30 18:22:36 -070085 <groupId>org.osgi</groupId>
86 <artifactId>org.osgi.compendium</artifactId>
Ray Milkey17481412015-12-09 09:16:26 -080087 </dependency>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.core</artifactId>
alshabibf0e7e702015-05-30 18:22:36 -070091 </dependency>
92 </dependencies>
Ray Milkey17481412015-12-09 09:16:26 -080093
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 <extensions>true</extensions>
100 <configuration>
101 <instructions>
102 <_wab>src/main/webapp/</_wab>
103 <Include-Resource>
104 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
105 {maven-resources}
106 </Include-Resource>
107 <Bundle-SymbolicName>
108 ${project.groupId}.${project.artifactId}
109 </Bundle-SymbolicName>
110 <Import-Package>
111 org.slf4j,
112 org.osgi.framework,
113 org.osgi.service.*,
114 javax.ws.rs,
115 javax.ws.rs.core,
116 com.sun.jersey.api.core,
117 com.sun.jersey.spi.container.servlet,
118 com.sun.jersey.server.impl.container.servlet,
119 com.fasterxml.jackson.databind,
120 com.fasterxml.jackson.databind.node,
121 org.apache.karaf.shell.commands,
122 org.apache.commons.lang.math.*,
123 com.google.common.*,
124 org.onlab.packet.*,
125 org.onlab.rest.*,
126 org.onosproject.*,
127 org.onlab.util.*,
128 org.jboss.netty.util.*
129 </Import-Package>
130 <Web-ContextPath>${web.context}</Web-ContextPath>
131 </instructions>
132 </configuration>
133 </plugin>
134 </plugins>
135 </build>
alshabibf0e7e702015-05-30 18:22:36 -0700136</project>