blob: 3db71f6016194c13aa81869dca9c986b1f0e6afc [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>
sangho0c2a3da2016-02-16 13:39:07 +090024 <artifactId>onos-app-openstacknetworking</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
sangho0c2a3da2016-02-16 13:39:07 +090029 <artifactId>onos-app-openstacknetworking-web</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090030 <packaging>bundle</packaging>
31
sanghoshin46297d22015-11-03 17:51:24 +090032 <properties>
sanghoshin46297d22015-11-03 17:51:24 +090033 <web.context>/onos/openstackswitching</web.context>
34 <api.version>1.0.0</api.version>
sangho0c2a3da2016-02-16 13:39:07 +090035 <api.title>ONOS Openstack Networking REST API</api.title>
sanghoshin46297d22015-11-03 17:51:24 +090036 <api.description>
sangho0c2a3da2016-02-16 13:39:07 +090037 APIs for interacting with Openstack Neutron Plugin.
sanghoshin46297d22015-11-03 17:51:24 +090038 </api.description>
sangho0c2a3da2016-02-16 13:39:07 +090039 <api.package>org.onosproject.openstacknetworking.web</api.package>
sanghoshin46297d22015-11-03 17:51:24 +090040 </properties>
41
sanghoshin46297d22015-11-03 17:51:24 +090042 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
sangho0c2a3da2016-02-16 13:39:07 +090045 <artifactId>onos-app-openstacknetworking-api</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090046 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-rest</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-rest</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>javax.ws.rs</groupId>
60 <artifactId>jsr311-api</artifactId>
61 <version>1.1.1</version>
62 </dependency>
63 <dependency>
64 <groupId>com.sun.jersey</groupId>
65 <artifactId>jersey-servlet</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-databind</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.fasterxml.jackson.core</groupId>
73 <artifactId>jackson-annotations</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.osgi</groupId>
77 <artifactId>org.osgi.compendium</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.osgi</groupId>
81 <artifactId>org.osgi.core</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onos-app-dhcp-api</artifactId>
86 <version>${project.version}</version>
87 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090088 <dependency>
89 <groupId>com.sun.jersey</groupId>
90 <artifactId>jersey-client</artifactId>
91 <version>1.19</version>
92 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +090093 <dependency>
94 <groupId>com.sun.jersey</groupId>
95 <artifactId>jersey-core</artifactId>
96 <version>1.19</version>
97 </dependency>
98 <dependency>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onlab-misc</artifactId>
101 <version>${project.version}</version>
102 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900103 </dependencies>
104
105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>maven-bundle-plugin</artifactId>
110 <extensions>true</extensions>
111 <configuration>
112 <instructions>
113 <_wab>src/main/webapp/</_wab>
114 <Bundle-SymbolicName>
115 ${project.groupId}.${project.artifactId}
116 </Bundle-SymbolicName>
117 <Import-Package>
118 org.slf4j,
119 org.osgi.framework,
120 javax.ws.rs,
121 javax.ws.rs.core,
122 com.sun.jersey.api.core,
sanghoshinf25d2e02015-11-11 23:07:17 +0900123 com.sun.jersey.api.client,
sanghoshin46297d22015-11-03 17:51:24 +0900124 com.sun.jersey.spi.container.servlet,
125 com.sun.jersey.server.impl.container.servlet,
126 com.fasterxml.jackson.databind,
127 com.fasterxml.jackson.databind.node,
128 com.fasterxml.jackson.core,
129 org.apache.karaf.shell.commands,
130 com.google.common.*,
131 org.onlab.packet.*,
sanghoshinf6735b22015-12-17 18:23:53 +0900132 org.onosproject.*,
133 org.onlab.util.*
sanghoshin46297d22015-11-03 17:51:24 +0900134 </Import-Package>
135 <Web-ContextPath>${web.context}</Web-ContextPath>
136 </instructions>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
141
142
143</project>