blob: 6acb0baef1b6a0dfd42e7430e2b2de13a1049d46 [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 User61881df2017-12-12 21:19:45 +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>
81 <version>1.9.12</version>
82 <scope>provided</scope>
83 </dependency>
84
85 <dependency>
86 <groupId>org.glassfish.jersey.containers</groupId>
87 <artifactId>jersey-container-servlet</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>org.glassfish.jersey.core</groupId>
92 <artifactId>jersey-client</artifactId>
93 </dependency>
94
95 <dependency>
96 <groupId>org.glassfish.jersey.core</groupId>
97 <artifactId>jersey-common</artifactId>
98 <version>2.25</version>
99 </dependency>
100
101 <dependency>
102 <groupId>com.fasterxml.jackson.core</groupId>
103 <artifactId>jackson-databind</artifactId>
104 </dependency>
105
106 <dependency>
107 <groupId>com.fasterxml.jackson.core</groupId>
108 <artifactId>jackson-annotations</artifactId>
109 </dependency>
110
111 <dependency>
112 <groupId>commons-io</groupId>
113 <artifactId>commons-io</artifactId>
114 <version>2.4</version>
115 </dependency>
116
117 </dependencies>
118
119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-bundle-plugin</artifactId>
124 <extensions>true</extensions>
125 <configuration>
126 <instructions>
127 <_wab>src/main/webapp/</_wab>
128 <Include-Resource>
129 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
130 {maven-resources}
131 </Include-Resource>
132 <Bundle-SymbolicName>
133 ${project.groupId}.${project.artifactId}
134 </Bundle-SymbolicName>
135 <Import-Package>
136 *,org.glassfish.jersey.servlet
137 </Import-Package>
138 <Web-ContextPath>${web.context}</Web-ContextPath>
139 </instructions>
140 </configuration>
141 </plugin>
142
143 <plugin>
144 <groupId>org.apache.felix</groupId>
145 <artifactId>maven-scr-plugin</artifactId>
146 </plugin>
147
148 <plugin>
149 <groupId>org.onosproject</groupId>
150 <artifactId>onos-maven-plugin</artifactId>
151 </plugin>
152 </plugins>
153 </build>
154
155
156
157</project>