blob: 6d4441b7a88eaf373fff504111e6c1ed27194a8a [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'Connor55b4d802016-03-10 14:47:30 -080025 <version>1.5.0</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>
70 <artifactId>jsr311-api</artifactId>
71 <version>1.1.1</version>
72 </dependency>
73 <dependency>
74 <groupId>com.sun.jersey</groupId>
75 <artifactId>jersey-servlet</artifactId>
76 </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>
99 <groupId>com.sun.jersey</groupId>
100 <artifactId>jersey-client</artifactId>
101 <version>1.19</version>
102 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +0900103 <dependency>
104 <groupId>com.sun.jersey</groupId>
105 <artifactId>jersey-core</artifactId>
106 <version>1.19</version>
107 </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>
128 org.slf4j,
129 org.osgi.framework,
130 javax.ws.rs,
131 javax.ws.rs.core,
132 com.sun.jersey.api.core,
sanghoshinf25d2e02015-11-11 23:07:17 +0900133 com.sun.jersey.api.client,
sanghoshin46297d22015-11-03 17:51:24 +0900134 com.sun.jersey.spi.container.servlet,
135 com.sun.jersey.server.impl.container.servlet,
136 com.fasterxml.jackson.databind,
137 com.fasterxml.jackson.databind.node,
138 com.fasterxml.jackson.core,
139 org.apache.karaf.shell.commands,
140 com.google.common.*,
141 org.onlab.packet.*,
sanghoshinf6735b22015-12-17 18:23:53 +0900142 org.onosproject.*,
143 org.onlab.util.*
sanghoshin46297d22015-11-03 17:51:24 +0900144 </Import-Package>
145 <Web-ContextPath>${web.context}</Web-ContextPath>
146 </instructions>
147 </configuration>
148 </plugin>
149 </plugins>
150 </build>
151
152
153</project>