blob: e1ab1bf7bf232fd70d404285dc74759e4d3a5857 [file] [log] [blame]
Jian Lia1186772018-07-27 18:06:41 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2018-present Open Networking Foundation
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps-openstacktroubleshoot</artifactId>
25 <version>1.14.0-SNAPSHOT</version>
26 </parent>
27
28 <artifactId>onos-apps-openstacktroubleshoot-app</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>SONA Openstack Troubleshoot Application</description>
32
33 <properties>
34 <web.context>/onos/openstacktroubleshoot</web.context>
35 <api.version>1.0</api.version>
36 <api.title>OpenStack Troubleshoot API</api.title>
37 <api.description>
38 REST API for OpenStack Troubleshoot
39 </api.description>
40 <api.package>org.onosproject.openstacktroubleshoot.web</api.package>
41 </properties>
42
43 <dependencies>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-apps-openstacktroubleshoot-api</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-rest</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-rest</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>javax.ws.rs</groupId>
70 <artifactId>javax.ws.rs-api</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-osgi</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-cli</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84
85 <dependency>
86 <groupId>com.fasterxml.jackson.core</groupId>
87 <artifactId>jackson-databind</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>com.fasterxml.jackson.core</groupId>
92 <artifactId>jackson-annotations</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.karaf.shell</groupId>
96 <artifactId>org.apache.karaf.shell.console</artifactId>
97 </dependency>
98
99 <dependency>
100 <groupId>org.onosproject</groupId>
101 <artifactId>onos-api</artifactId>
102 <classifier>tests</classifier>
103 <scope>test</scope>
104 </dependency>
105
106 <dependency>
107 <groupId>com.google.guava</groupId>
108 <artifactId>guava-testlib</artifactId>
109 <scope>test</scope>
110 </dependency>
111
112 <dependency>
113 <groupId>org.onosproject</groupId>
114 <artifactId>onlab-junit</artifactId>
115 <scope>test</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.easymock</groupId>
120 <artifactId>easymock</artifactId>
121 <scope>test</scope>
122 </dependency>
123
124 <dependency>
125 <groupId>org.glassfish.jersey.core</groupId>
126 <artifactId>jersey-client</artifactId>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.glassfish.jersey.containers</groupId>
131 <artifactId>jersey-container-servlet</artifactId>
132 </dependency>
133
134 <dependency>
135 <groupId>org.glassfish.jersey.test-framework</groupId>
136 <artifactId>jersey-test-framework-core</artifactId>
137 <scope>test</scope>
138 </dependency>
139
140 <dependency>
141 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
142 <artifactId>jersey-test-framework-provider-jetty</artifactId>
143 <scope>test</scope>
144 </dependency>
145
146 <dependency>
147 <groupId>org.onosproject</groupId>
148 <artifactId>onlab-osgi</artifactId>
149 <classifier>tests</classifier>
150 <scope>test</scope>
151 </dependency>
152
153 <dependency>
154 <groupId>org.onosproject</groupId>
155 <artifactId>onos-rest</artifactId>
156 <version>${project.version}</version>
157 <classifier>tests</classifier>
158 <scope>test</scope>
159 </dependency>
160
161 <dependency>
162 <groupId>org.glassfish.jersey.core</groupId>
163 <artifactId>jersey-common</artifactId>
164 <scope>test</scope>
165 </dependency>
166 <dependency>
167 <groupId>org.glassfish.jersey.inject</groupId>
168 <artifactId>jersey-hk2</artifactId>
169 <scope>test</scope>
170 </dependency>
171 </dependencies>
172
173 <build>
174 <plugins>
175 <plugin>
176 <groupId>org.apache.felix</groupId>
177 <artifactId>maven-bundle-plugin</artifactId>
178 <extensions>true</extensions>
179 <configuration>
180 <instructions>
181 <_wab>src/main/webapp/</_wab>
182 <Include-Resource>
183 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
184 {maven-resources}
185 </Include-Resource>
186 <Bundle-SymbolicName>
187 ${project.groupId}.${project.artifactId}
188 </Bundle-SymbolicName>
189 <Import-Package>
190 *,org.glassfish.jersey.servlet
191 </Import-Package>
192 <Web-ContextPath>${web.context}</Web-ContextPath>
193 </instructions>
194 </configuration>
195 </plugin>
196 </plugins>
197 </build>
198</project>