blob: 7634310a0f12ed07ac07ec8d5f690c6fa4628dd5 [file] [log] [blame]
Jian Li6e4da2f2018-05-21 18:11:31 +09001<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4 ~ Copyright 2018 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"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.onosproject</groupId>
Yuta HIGUCHI17985df2018-05-25 11:21:30 -070025 <artifactId>onos-apps-openstacktelemetry</artifactId>
Jian Li6e4da2f2018-05-21 18:11:31 +090026 <version>1.14.0-SNAPSHOT</version>
27 </parent>
28
29 <artifactId>onos-apps-openstacktelemetry-app</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>OpenStack Telemetry Service</description>
33 <url>http://onosproject.org</url>
34
35 <properties>
36 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37 <onos.app.name>org.onosproject.openstacktelemetry</onos.app.name>
38 <onos.app.title>OpenStack Telemetry Service</onos.app.title>
39 <onos.app.category>Telemetry</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
41 <onos.app.readme>OpenStack Telemetry Application</onos.app.readme>
42 <web.context>/onos/openstacktelemetry</web.context>
43 <api.version>1.0.0</api.version>
44 <api.title>OpenStack Telemetry REST API</api.title>
45 <api.description>
46 APIs for interacting with OpenStack Telemetry entity.
47 </api.description>
48 <api.package>org.onosproject.openstacktelemetry.web</api.package>
49 </properties>
50
51 <dependencies>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-apps-openstacktelemetry-api</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-osgi</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69
70 <dependency>
71 <groupId>javax.ws.rs</groupId>
72 <artifactId>javax.ws.rs-api</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-cli</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.karaf.shell</groupId>
83 <artifactId>org.apache.karaf.shell.console</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.scr.annotations</artifactId>
89 <scope>provided</scope>
90 </dependency>
91
92 <dependency>
93 <groupId>org.glassfish.jersey.containers</groupId>
94 <artifactId>jersey-container-servlet</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.glassfish.jersey.core</groupId>
99 <artifactId>jersey-client</artifactId>
100 </dependency>
101
102 <dependency>
103 <groupId>org.glassfish.jersey.core</groupId>
104 <artifactId>jersey-common</artifactId>
105 <version>2.25</version>
106 </dependency>
107
108 <dependency>
109 <groupId>com.fasterxml.jackson.core</groupId>
110 <artifactId>jackson-databind</artifactId>
111 </dependency>
112
113 <dependency>
114 <groupId>com.fasterxml.jackson.core</groupId>
115 <artifactId>jackson-annotations</artifactId>
116 </dependency>
117
118 <dependency>
119 <groupId>commons-io</groupId>
120 <artifactId>commons-io</artifactId>
121 </dependency>
122
123 </dependencies>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.felix</groupId>
129 <artifactId>maven-bundle-plugin</artifactId>
130 <extensions>true</extensions>
131 <configuration>
132 <instructions>
133 <_wab>src/main/webapp/</_wab>
134 <Include-Resource>
135 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
136 {maven-resources}
137 </Include-Resource>
138 <Bundle-SymbolicName>
139 ${project.groupId}.${project.artifactId}
140 </Bundle-SymbolicName>
141 <Import-Package>
142 *,org.glassfish.jersey.servlet
143 </Import-Package>
144 <Web-ContextPath>${web.context}</Web-ContextPath>
145 </instructions>
146 </configuration>
147 </plugin>
148
149 <plugin>
150 <groupId>org.apache.felix</groupId>
151 <artifactId>maven-scr-plugin</artifactId>
152 </plugin>
153
154 <plugin>
155 <groupId>org.onosproject</groupId>
156 <artifactId>onos-maven-plugin</artifactId>
157 </plugin>
158 </plugins>
159 </build>
160</project>