blob: 7ae11e3a89f244b0d83e198540e17f0e229767e0 [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>
23 <version>1.5.0-SNAPSHOT</version>
24 <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>
72 <artifactId>jsr311-api</artifactId>
73 <version>1.1.1</version>
74 </dependency>
75 <dependency>
76 <groupId>com.sun.jersey</groupId>
77 <artifactId>jersey-servlet</artifactId>
78 </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>
116 org.slf4j,
117 org.osgi.framework,
118 org.osgi.service.*,
119 javax.ws.rs,
120 javax.ws.rs.core,
121 com.sun.jersey.api.core,
122 com.sun.jersey.spi.container.servlet,
123 com.sun.jersey.server.impl.container.servlet,
124 com.fasterxml.jackson.databind,
125 com.fasterxml.jackson.databind.node,
126 org.apache.karaf.shell.commands,
127 org.apache.commons.lang.math.*,
128 com.google.common.*,
129 org.onlab.packet.*,
130 org.onlab.rest.*,
131 org.onosproject.*,
132 org.onlab.util.*,
133 org.jboss.netty.util.*
134 </Import-Package>
135 <Web-ContextPath>${web.context}</Web-ContextPath>
136 </instructions>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
141</project>