blob: fadcec42deff2fb247e5b04926c628b831ce5a06 [file] [log] [blame]
sanghoshin46297d22015-11-03 17:51:24 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Lic35415d2016-01-14 17:22:31 -08003 ~ Copyright 2015-2016 Open Networking Laboratory
sanghoshin46297d22015-11-03 17:51:24 +09004 ~
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-openstackswitching</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.0-SNAPSHOT</version>
sanghoshin46297d22015-11-03 17:51:24 +090026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-openstackswitching</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>SONA Openstack Switching applications</description>
33 <properties>
sanghoshin46297d22015-11-03 17:51:24 +090034 <web.context>/onos/openstackswitching</web.context>
35 <api.version>1.0.0</api.version>
36 <api.title>ONOS OpenStack Switching REST API</api.title>
37 <api.description>
38 APIs for receiving Neutron information.
39 </api.description>
40 <api.package>org.onosproject.openstackswitching.web</api.package>
41 <onos.app.origin>SKT, Inc.</onos.app.origin>
42 </properties>
43
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-app-openstackswitching-api</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-rest</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-rest</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>javax.ws.rs</groupId>
63 <artifactId>jsr311-api</artifactId>
64 <version>1.1.1</version>
65 </dependency>
66 <dependency>
67 <groupId>com.sun.jersey</groupId>
68 <artifactId>jersey-servlet</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-databind</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-annotations</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.osgi</groupId>
80 <artifactId>org.osgi.compendium</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.core</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-app-dhcp-api</artifactId>
89 <version>${project.version}</version>
90 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090091 <dependency>
92 <groupId>com.sun.jersey</groupId>
93 <artifactId>jersey-client</artifactId>
94 <version>1.19</version>
95 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +090096 <dependency>
97 <groupId>com.sun.jersey</groupId>
98 <artifactId>jersey-core</artifactId>
99 <version>1.19</version>
100 </dependency>
101 <dependency>
102 <groupId>org.onosproject</groupId>
103 <artifactId>onlab-misc</artifactId>
104 <version>${project.version}</version>
105 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900106 </dependencies>
107
108 <build>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-bundle-plugin</artifactId>
113 <extensions>true</extensions>
114 <configuration>
115 <instructions>
116 <_wab>src/main/webapp/</_wab>
117 <Bundle-SymbolicName>
118 ${project.groupId}.${project.artifactId}
119 </Bundle-SymbolicName>
120 <Import-Package>
121 org.slf4j,
122 org.osgi.framework,
123 javax.ws.rs,
124 javax.ws.rs.core,
125 com.sun.jersey.api.core,
sanghoshinf25d2e02015-11-11 23:07:17 +0900126 com.sun.jersey.api.client,
sanghoshin46297d22015-11-03 17:51:24 +0900127 com.sun.jersey.spi.container.servlet,
128 com.sun.jersey.server.impl.container.servlet,
129 com.fasterxml.jackson.databind,
130 com.fasterxml.jackson.databind.node,
131 com.fasterxml.jackson.core,
132 org.apache.karaf.shell.commands,
133 com.google.common.*,
134 org.onlab.packet.*,
sanghoshinf6735b22015-12-17 18:23:53 +0900135 org.onosproject.*,
136 org.onlab.util.*
sanghoshin46297d22015-11-03 17:51:24 +0900137 </Import-Package>
138 <Web-ContextPath>${web.context}</Web-ContextPath>
139 </instructions>
140 </configuration>
141 </plugin>
142 </plugins>
143 </build>
144
145
146</project>