blob: b584ae54f6efadc6b38a098b58afba53bc19065d [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 </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>
sanghoshin46297d22015-11-03 17:51:24 +090032 <web.context>/onos/openstackswitching</web.context>
33 <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>
Jian Li9d616492016-03-09 10:52:49 -0800100 <version>2.22.2</version>
sanghoshinf25d2e02015-11-11 23:07:17 +0900101 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +0900102 <dependency>
Jian Li9d616492016-03-09 10:52:49 -0800103 <groupId>org.glassfish.jersey.core</groupId>
104 <artifactId>jersey-common</artifactId>
105 <version>2.22.2</version>
sanghoshinf6735b22015-12-17 18:23:53 +0900106 </dependency>
107 <dependency>
108 <groupId>org.onosproject</groupId>
109 <artifactId>onlab-misc</artifactId>
110 <version>${project.version}</version>
111 </dependency>
sanghoshin46297d22015-11-03 17:51:24 +0900112 </dependencies>
113
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>maven-bundle-plugin</artifactId>
119 <extensions>true</extensions>
120 <configuration>
121 <instructions>
122 <_wab>src/main/webapp/</_wab>
123 <Bundle-SymbolicName>
124 ${project.groupId}.${project.artifactId}
125 </Bundle-SymbolicName>
126 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700127 *,org.glassfish.jersey.servlet
sanghoshin46297d22015-11-03 17:51:24 +0900128 </Import-Package>
129 <Web-ContextPath>${web.context}</Web-ContextPath>
130 </instructions>
131 </configuration>
132 </plugin>
133 </plugins>
134 </build>
135
136
137</project>