blob: 90ec25427ecf7c82a891bc33312e62276a877a57 [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>
Ray Milkeyeb3f6ef2017-09-26 14:40:44 -070024 <version>1.12.0-b1</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>
65 <version>2.0.1</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-cli</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73
74 <dependency>
75 <groupId>org.apache.karaf.shell</groupId>
76 <artifactId>org.apache.karaf.shell.console</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>org.apache.felix.scr.annotations</artifactId>
82 <version>1.9.12</version>
83 <scope>provided</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.glassfish.jersey.containers</groupId>
88 <artifactId>jersey-container-servlet</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>org.glassfish.jersey.core</groupId>
93 <artifactId>jersey-client</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.glassfish.jersey.core</groupId>
98 <artifactId>jersey-common</artifactId>
99 <version>2.25</version>
100 </dependency>
101
102 <dependency>
103 <groupId>com.fasterxml.jackson.core</groupId>
104 <artifactId>jackson-databind</artifactId>
105 </dependency>
106
107 <dependency>
108 <groupId>com.fasterxml.jackson.core</groupId>
109 <artifactId>jackson-annotations</artifactId>
110 </dependency>
111
112 <dependency>
113 <groupId>commons-io</groupId>
114 <artifactId>commons-io</artifactId>
115 <version>2.4</version>
116 </dependency>
117
118 </dependencies>
119
120 <build>
121 <plugins>
122 <plugin>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>maven-bundle-plugin</artifactId>
125 <extensions>true</extensions>
126 <configuration>
127 <instructions>
128 <_wab>src/main/webapp/</_wab>
129 <Include-Resource>
130 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
131 {maven-resources}
132 </Include-Resource>
133 <Bundle-SymbolicName>
134 ${project.groupId}.${project.artifactId}
135 </Bundle-SymbolicName>
136 <Import-Package>
137 *,org.glassfish.jersey.servlet
138 </Import-Package>
139 <Web-ContextPath>${web.context}</Web-ContextPath>
140 </instructions>
141 </configuration>
142 </plugin>
143
144 <plugin>
145 <groupId>org.apache.felix</groupId>
146 <artifactId>maven-scr-plugin</artifactId>
147 </plugin>
148
149 <plugin>
150 <groupId>org.onosproject</groupId>
151 <artifactId>onos-maven-plugin</artifactId>
152 </plugin>
153 </plugins>
154 </build>
155
156
157
158</project>