blob: ad5e57fba9dcb84628eca76d1cfee5837746ef56 [file] [log] [blame]
Srikanth Vavilapalli0d21dd12016-01-16 19:21:59 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2016-present Open Networking Laboratory
Srikanth Vavilapalli0d21dd12016-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>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-olt</artifactId>
Brian O'Connore642f7c2016-05-23 18:33:04 -070023 <version>1.7.0-SNAPSHOT</version>
Srikanth Vavilapalli0d21dd12016-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 Vavilapalli0d21dd12016-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>
alshabib4809e542016-04-28 15:52:22 -070046 <artifactId>onos-cord-config</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.onosproject</groupId>
Srikanth Vavilapalli0d21dd12016-01-16 19:21:59 -080051 <artifactId>onos-app-olt-api</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-cli</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.apache.karaf.shell</groupId>
63 <artifactId>org.apache.karaf.shell.console</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-rest</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onlab-rest</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080077 <artifactId>javax.ws.rs-api</artifactId>
78 <version>2.0.1</version>
Srikanth Vavilapalli0d21dd12016-01-16 19:21:59 -080079 </dependency>
80 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080081 <groupId>org.glassfish.jersey.containers</groupId>
82 <artifactId>jersey-container-servlet</artifactId>
Srikanth Vavilapalli0d21dd12016-01-16 19:21:59 -080083 </dependency>
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-databind</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>com.fasterxml.jackson.core</groupId>
91 <artifactId>jackson-annotations</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.osgi</groupId>
96 <artifactId>org.osgi.compendium</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.osgi</groupId>
100 <artifactId>org.osgi.core</artifactId>
101 </dependency>
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-bundle-plugin</artifactId>
109 <extensions>true</extensions>
110 <configuration>
111 <instructions>
112 <_wab>src/main/webapp/</_wab>
113 <Include-Resource>
114 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
115 {maven-resources}
116 </Include-Resource>
117 <Bundle-SymbolicName>
118 ${project.groupId}.${project.artifactId}
119 </Bundle-SymbolicName>
120 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700121 *,org.glassfish.jersey.servlet
Srikanth Vavilapalli0d21dd12016-01-16 19:21:59 -0800122 </Import-Package>
123 <Web-ContextPath>${web.context}</Web-ContextPath>
124 </instructions>
125 </configuration>
126 </plugin>
127 </plugins>
128 </build>
129</project>