blob: d0c04a4bbd60d167bd9d63f6bfef895050e5c47e [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>
sanghoshin65723ae2015-11-17 22:07:21 +090042 <onos.app.requires>
43 org.onosproject.dhcp
44 </onos.app.requires>
sanghoshin46297d22015-11-03 17:51:24 +090045 </properties>
46
47
48 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-app-openstackswitching-api</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-rest</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-rest</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>javax.ws.rs</groupId>
66 <artifactId>jsr311-api</artifactId>
67 <version>1.1.1</version>
68 </dependency>
69 <dependency>
70 <groupId>com.sun.jersey</groupId>
71 <artifactId>jersey-servlet</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-databind</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-annotations</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.osgi</groupId>
83 <artifactId>org.osgi.compendium</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.core</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onos-app-dhcp-api</artifactId>
92 <version>${project.version}</version>
93 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090094 <dependency>
95 <groupId>com.sun.jersey</groupId>
96 <artifactId>jersey-client</artifactId>
97 <version>1.19</version>
98 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +090099 <dependency>
100 <groupId>com.sun.jersey</groupId>
101 <artifactId>jersey-core</artifactId>
102 <version>1.19</version>
103 </dependency>
104 <dependency>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onlab-misc</artifactId>
107 <version>${project.version}</version>
108 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900109 </dependencies>
110
111 <build>
112 <plugins>
113 <plugin>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>maven-bundle-plugin</artifactId>
116 <extensions>true</extensions>
117 <configuration>
118 <instructions>
119 <_wab>src/main/webapp/</_wab>
120 <Bundle-SymbolicName>
121 ${project.groupId}.${project.artifactId}
122 </Bundle-SymbolicName>
123 <Import-Package>
124 org.slf4j,
125 org.osgi.framework,
126 javax.ws.rs,
127 javax.ws.rs.core,
128 com.sun.jersey.api.core,
sanghoshinf25d2e02015-11-11 23:07:17 +0900129 com.sun.jersey.api.client,
sanghoshin46297d22015-11-03 17:51:24 +0900130 com.sun.jersey.spi.container.servlet,
131 com.sun.jersey.server.impl.container.servlet,
132 com.fasterxml.jackson.databind,
133 com.fasterxml.jackson.databind.node,
134 com.fasterxml.jackson.core,
135 org.apache.karaf.shell.commands,
136 com.google.common.*,
137 org.onlab.packet.*,
sanghoshinf6735b22015-12-17 18:23:53 +0900138 org.onosproject.*,
139 org.onlab.util.*
sanghoshin46297d22015-11-03 17:51:24 +0900140 </Import-Package>
141 <Web-ContextPath>${web.context}</Web-ContextPath>
142 </instructions>
143 </configuration>
144 </plugin>
145 </plugins>
146 </build>
147
148
149</project>