blob: 026beefea98ce75a7625c0256180562ca613f1db [file] [log] [blame]
sanghoshin46297d22015-11-03 17:51:24 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
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>
24 <artifactId>onos-openstackswitching</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
29 <artifactId>onos-app-openstackswitching</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>SONA Openstack Switching applications</description>
33 <properties>
sanghoshin46297d22015-11-03 17:51:24 +090034 <onos.app.name>org.onosproject.openstackswitching</onos.app.name>
35 <web.context>/onos/openstackswitching</web.context>
36 <api.version>1.0.0</api.version>
37 <api.title>ONOS OpenStack Switching REST API</api.title>
38 <api.description>
39 APIs for receiving Neutron information.
40 </api.description>
41 <api.package>org.onosproject.openstackswitching.web</api.package>
42 <onos.app.origin>SKT, Inc.</onos.app.origin>
sanghoshin65723ae2015-11-17 22:07:21 +090043 <onos.app.requires>
44 org.onosproject.dhcp
45 </onos.app.requires>
sanghoshin46297d22015-11-03 17:51:24 +090046 </properties>
47
48
49 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-app-openstackswitching-api</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-rest</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-rest</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>javax.ws.rs</groupId>
67 <artifactId>jsr311-api</artifactId>
68 <version>1.1.1</version>
69 </dependency>
70 <dependency>
71 <groupId>com.sun.jersey</groupId>
72 <artifactId>jersey-servlet</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-databind</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-annotations</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.compendium</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.core</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.onosproject</groupId>
92 <artifactId>onos-app-dhcp-api</artifactId>
93 <version>${project.version}</version>
94 </dependency>
sanghoshinf25d2e02015-11-11 23:07:17 +090095 <dependency>
96 <groupId>com.sun.jersey</groupId>
97 <artifactId>jersey-client</artifactId>
98 <version>1.19</version>
99 </dependency>
sanghoshinf6735b22015-12-17 18:23:53 +0900100 <dependency>
101 <groupId>com.sun.jersey</groupId>
102 <artifactId>jersey-core</artifactId>
103 <version>1.19</version>
104 </dependency>
105 <dependency>
106 <groupId>org.onosproject</groupId>
107 <artifactId>onlab-misc</artifactId>
108 <version>${project.version}</version>
109 </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>
125 org.slf4j,
126 org.osgi.framework,
127 javax.ws.rs,
128 javax.ws.rs.core,
129 com.sun.jersey.api.core,
sanghoshinf25d2e02015-11-11 23:07:17 +0900130 com.sun.jersey.api.client,
sanghoshin46297d22015-11-03 17:51:24 +0900131 com.sun.jersey.spi.container.servlet,
132 com.sun.jersey.server.impl.container.servlet,
133 com.fasterxml.jackson.databind,
134 com.fasterxml.jackson.databind.node,
135 com.fasterxml.jackson.core,
136 org.apache.karaf.shell.commands,
137 com.google.common.*,
138 org.onlab.packet.*,
sanghoshinf6735b22015-12-17 18:23:53 +0900139 org.onosproject.*,
140 org.onlab.util.*
sanghoshin46297d22015-11-03 17:51:24 +0900141 </Import-Package>
142 <Web-ContextPath>${web.context}</Web-ContextPath>
143 </instructions>
144 </configuration>
145 </plugin>
146 </plugins>
147 </build>
148
149
150</project>