blob: 245b9e8088f57a738d5d09c633fdb4e2764a0729 [file] [log] [blame]
sanghoshin94872a12015-10-16 18:04:34 +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-apps</artifactId>
25 <version>1.4.0-SNAPSHOT</version>
26 <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>
34 <onos.version>1.4.0-SNAPSHOT</onos.version>
35 <onos.app.name>org.onosproject.openstackswitching</onos.app.name>
36 <web.context>/onos/openstackswitching</web.context>
37 <api.version>1.0.0</api.version>
38 <api.title>ONOS OpenStack Switching REST API</api.title>
39 <api.description>
40 APIs for receiving Neutron information.
41 </api.description>
42 <api.package>org.onosproject.openstackswitching.web</api.package>
43 <onos.app.origin>SKT, Inc.</onos.app.origin>
44 </properties>
45
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-rest</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-rest</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>javax.ws.rs</groupId>
60 <artifactId>jsr311-api</artifactId>
61 <version>1.1.1</version>
62 </dependency>
63 <dependency>
64 <groupId>com.sun.jersey</groupId>
65 <artifactId>jersey-servlet</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-databind</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.fasterxml.jackson.core</groupId>
73 <artifactId>jackson-annotations</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.osgi</groupId>
77 <artifactId>org.osgi.compendium</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.osgi</groupId>
81 <artifactId>org.osgi.core</artifactId>
82 </dependency>
83 </dependencies>
84
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-bundle-plugin</artifactId>
90 <extensions>true</extensions>
91 <configuration>
92 <instructions>
93 <_wab>src/main/webapp/</_wab>
94 <Bundle-SymbolicName>
95 ${project.groupId}.${project.artifactId}
96 </Bundle-SymbolicName>
97 <Import-Package>
98 org.slf4j,
99 org.osgi.framework,
100 javax.ws.rs,
101 javax.ws.rs.core,
102 com.sun.jersey.api.core,
103 com.sun.jersey.spi.container.servlet,
104 com.sun.jersey.server.impl.container.servlet,
105 com.fasterxml.jackson.databind,
106 com.fasterxml.jackson.databind.node,
107 com.fasterxml.jackson.core,
108 org.apache.karaf.shell.commands,
109 com.google.common.*,
110 org.onlab.packet.*,
111 org.onosproject.*
112 </Import-Package>
113 <Web-ContextPath>${web.context}</Web-ContextPath>
114 </instructions>
115 </configuration>
116 </plugin>
117 </plugins>
118 </build>
119
120
121</project>