blob: fb3167eed0abad883acf31714870580e1846f307 [file] [log] [blame]
daniel park128c52c2017-09-04 13:15:51 +09001<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4 ~ Copyright 2017 Open Networking Laboratory
5 ~
6 ~ Licensed under the Apache License, Version 2.0 (the "License");
7 ~ you may not use this file except in compliance with the License.
8 ~ You may obtain a copy of the License at
9 ~
10 ~ http://www.apache.org/licenses/LICENSE-2.0
11 ~
12 ~ Unless required by applicable law or agreed to in writing, software
13 ~ distributed under the License is distributed on an "AS IS" BASIS,
14 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ See the License for the specific language governing permissions and
16 ~ limitations under the License.
17 -->
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-apps</artifactId>
ONOS Jenkins User45d340c2018-01-09 01:56:13 +000024 <version>1.13.0-SNAPSHOT</version>
daniel park128c52c2017-09-04 13:15:51 +090025 </parent>
26
27 <artifactId>onos-apps-openstacknetworkingui</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>OpenStack Networking UI Service</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <onos.app.name>org.onosproject.openstacknetworkingui</onos.app.name>
36 <onos.app.title>OpenStack Networking UI Service</onos.app.title>
37 <onos.app.category>UI</onos.app.category>
38 <onos.app.url>http://onosproject.org</onos.app.url>
39 <onos.app.readme>OpenStack Networking UI Application</onos.app.readme>
40 <web.context>/onos/openstacknetworkingui</web.context>
41 <api.version>1.0.0</api.version>
42 <api.title>OpenStack Networking UI REST API</api.title>
43 <api.description>
44 APIs for interacting with OpenStack Networking Monitoring server.
45 </api.description>
46 <api.package>org.onosproject.openstacknetworkingui.web</api.package>
47 </properties>
48
49 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>javax.ws.rs</groupId>
64 <artifactId>javax.ws.rs-api</artifactId>
daniel park128c52c2017-09-04 13:15:51 +090065 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-cli</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72
73 <dependency>
74 <groupId>org.apache.karaf.shell</groupId>
75 <artifactId>org.apache.karaf.shell.console</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr.annotations</artifactId>
daniel park128c52c2017-09-04 13:15:51 +090081 <scope>provided</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.glassfish.jersey.containers</groupId>
86 <artifactId>jersey-container-servlet</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.glassfish.jersey.core</groupId>
91 <artifactId>jersey-client</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.glassfish.jersey.core</groupId>
96 <artifactId>jersey-common</artifactId>
97 <version>2.25</version>
98 </dependency>
99
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-databind</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>com.fasterxml.jackson.core</groupId>
107 <artifactId>jackson-annotations</artifactId>
108 </dependency>
109
110 <dependency>
111 <groupId>commons-io</groupId>
112 <artifactId>commons-io</artifactId>
daniel park128c52c2017-09-04 13:15:51 +0900113 </dependency>
114
115 </dependencies>
116
117 <build>
118 <plugins>
119 <plugin>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>maven-bundle-plugin</artifactId>
122 <extensions>true</extensions>
123 <configuration>
124 <instructions>
125 <_wab>src/main/webapp/</_wab>
126 <Include-Resource>
127 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
128 {maven-resources}
129 </Include-Resource>
130 <Bundle-SymbolicName>
131 ${project.groupId}.${project.artifactId}
132 </Bundle-SymbolicName>
133 <Import-Package>
134 *,org.glassfish.jersey.servlet
135 </Import-Package>
136 <Web-ContextPath>${web.context}</Web-ContextPath>
137 </instructions>
138 </configuration>
139 </plugin>
140
141 <plugin>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>maven-scr-plugin</artifactId>
144 </plugin>
145
146 <plugin>
147 <groupId>org.onosproject</groupId>
148 <artifactId>onos-maven-plugin</artifactId>
149 </plugin>
150 </plugins>
151 </build>
152
153
154
155</project>