blob: 2655e567ce5f6ab9c80851f8e7a2ae22204c1ddf [file] [log] [blame]
sanghoshin46297d22015-11-03 17:51:24 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2016-present 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'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.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>
sangho93447f12016-02-24 00:33:22 +090050 <artifactId>onos-app-openstackinterface-app</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-app-openstackinterface-api</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
sanghoshin46297d22015-11-03 17:51:24 +090060 <artifactId>onos-rest</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-rest</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080070 <artifactId>javax.ws.rs-api</artifactId>
71 <version>2.0.1</version>
sanghoshin46297d22015-11-03 17:51:24 +090072 </dependency>
73 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080074 <groupId>org.glassfish.jersey.containers</groupId>
75 <artifactId>jersey-container-servlet</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090076 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-databind</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>com.fasterxml.jackson.core</groupId>
83 <artifactId>jackson-annotations</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.compendium</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.core</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-app-dhcp-api</artifactId>
96 <version>${project.version}</version>
97 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090098 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080099 <groupId>org.glassfish.jersey.core</groupId>
sanghoshinf25d2e02015-11-11 23:07:17 +0900100 <artifactId>jersey-client</artifactId>
Jian Li9d616492016-03-09 10:52:49 -0800101 <version>2.22.2</version>
sanghoshinf25d2e02015-11-11 23:07:17 +0900102 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +0900103 <dependency>
Jian Li9d616492016-03-09 10:52:49 -0800104 <groupId>org.glassfish.jersey.core</groupId>
105 <artifactId>jersey-common</artifactId>
106 <version>2.22.2</version>
sanghoshinf6735b22015-12-17 18:23:53 +0900107 </dependency>
108 <dependency>
109 <groupId>org.onosproject</groupId>
110 <artifactId>onlab-misc</artifactId>
111 <version>${project.version}</version>
112 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900113 </dependencies>
114
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>maven-bundle-plugin</artifactId>
120 <extensions>true</extensions>
121 <configuration>
122 <instructions>
123 <_wab>src/main/webapp/</_wab>
124 <Bundle-SymbolicName>
125 ${project.groupId}.${project.artifactId}
126 </Bundle-SymbolicName>
127 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700128 *,org.glassfish.jersey.servlet
sanghoshin46297d22015-11-03 17:51:24 +0900129 </Import-Package>
130 <Web-ContextPath>${web.context}</Web-ContextPath>
131 </instructions>
132 </configuration>
133 </plugin>
134 </plugins>
135 </build>
136
137
138</project>