blob: 6b8cb13b8b7fbdda5e909e578d097fd3496b0698 [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>
Ray Milkey8588c482017-02-13 10:52:31 -080025 <version>1.9.0-b3</version>
sanghoshin46297d22015-11-03 17:51:24 +090026 </parent>
27
sangho0c2a3da2016-02-16 13:39:07 +090028 <artifactId>onos-app-openstacknetworking-web</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090029 <packaging>bundle</packaging>
30
sanghoshin46297d22015-11-03 17:51:24 +090031 <properties>
Daniel Parkd41e2252016-10-30 22:22:10 +090032 <web.context>/onos/openstacknetworking</web.context>
sanghoshin46297d22015-11-03 17:51:24 +090033 <api.version>1.0.0</api.version>
sangho0c2a3da2016-02-16 13:39:07 +090034 <api.title>ONOS Openstack Networking REST API</api.title>
sanghoshin46297d22015-11-03 17:51:24 +090035 <api.description>
sangho0c2a3da2016-02-16 13:39:07 +090036 APIs for interacting with Openstack Neutron Plugin.
sanghoshin46297d22015-11-03 17:51:24 +090037 </api.description>
sangho0c2a3da2016-02-16 13:39:07 +090038 <api.package>org.onosproject.openstacknetworking.web</api.package>
sanghoshin46297d22015-11-03 17:51:24 +090039 </properties>
40
sanghoshin46297d22015-11-03 17:51:24 +090041 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
sangho0c2a3da2016-02-16 13:39:07 +090044 <artifactId>onos-app-openstacknetworking-api</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090045 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
sangho93447f12016-02-24 00:33:22 +090049 <artifactId>onos-app-openstackinterface-app</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-app-openstackinterface-api</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.onosproject</groupId>
sanghoshin46297d22015-11-03 17:51:24 +090059 <artifactId>onos-rest</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-rest</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080069 <artifactId>javax.ws.rs-api</artifactId>
70 <version>2.0.1</version>
sanghoshin46297d22015-11-03 17:51:24 +090071 </dependency>
72 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080073 <groupId>org.glassfish.jersey.containers</groupId>
74 <artifactId>jersey-container-servlet</artifactId>
sanghoshin46297d22015-11-03 17:51:24 +090075 </dependency>
76 <dependency>
77 <groupId>com.fasterxml.jackson.core</groupId>
78 <artifactId>jackson-databind</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-annotations</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.osgi</groupId>
86 <artifactId>org.osgi.compendium</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.core</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onos-app-dhcp-api</artifactId>
95 <version>${project.version}</version>
96 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090097 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080098 <groupId>org.glassfish.jersey.core</groupId>
sanghoshinf25d2e02015-11-11 23:07:17 +090099 <artifactId>jersey-client</artifactId>
sanghoshinf25d2e02015-11-11 23:07:17 +0900100 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +0900101 <dependency>
Jian Li9d616492016-03-09 10:52:49 -0800102 <groupId>org.glassfish.jersey.core</groupId>
103 <artifactId>jersey-common</artifactId>
Jian Lib39bf992017-01-18 10:18:41 -0800104 <version>2.25</version>
sanghoshinf6735b22015-12-17 18:23:53 +0900105 </dependency>
106 <dependency>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onlab-misc</artifactId>
sanghoshinf6735b22015-12-17 18:23:53 +0900109 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900110 </dependencies>
111
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-bundle-plugin</artifactId>
117 <extensions>true</extensions>
118 <configuration>
119 <instructions>
120 <_wab>src/main/webapp/</_wab>
121 <Bundle-SymbolicName>
122 ${project.groupId}.${project.artifactId}
123 </Bundle-SymbolicName>
124 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700125 *,org.glassfish.jersey.servlet
sanghoshin46297d22015-11-03 17:51:24 +0900126 </Import-Package>
127 <Web-ContextPath>${web.context}</Web-ContextPath>
128 </instructions>
129 </configuration>
130 </plugin>
131 </plugins>
132 </build>
133
134
135</project>