Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 1 | <?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 HIGUCHI | 17985df | 2018-05-25 11:21:30 -0700 | [diff] [blame] | 25 | <artifactId>onos-apps-openstacktelemetry</artifactId> |
ONOS Jenkins User | 03e5521 | 2018-08-14 22:13:58 +0000 | [diff] [blame] | 26 | <version>1.14.0-SNAPSHOT</version> |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 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> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 59 | <groupId>com.google.protobuf</groupId> |
| 60 | <artifactId>protobuf-java</artifactId> |
Jian Li | e6110b7 | 2018-07-06 19:06:36 +0900 | [diff] [blame] | 61 | <version>${protobuf-java.version}</version> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>io.grpc</groupId> |
| 66 | <artifactId>grpc-core</artifactId> |
Jian Li | e6110b7 | 2018-07-06 19:06:36 +0900 | [diff] [blame] | 67 | <version>${io-grpc.version}</version> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>io.grpc</groupId> |
| 72 | <artifactId>grpc-protobuf</artifactId> |
Jian Li | e6110b7 | 2018-07-06 19:06:36 +0900 | [diff] [blame] | 73 | <version>${io-grpc.version}</version> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 74 | </dependency> |
| 75 | |
| 76 | <dependency> |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 77 | <groupId>org.onosproject</groupId> |
| 78 | <artifactId>onos-apps-openstacktelemetry-api</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
Jian Li | 0bbbb1c | 2018-06-22 22:01:17 +0900 | [diff] [blame] | 84 | <artifactId>onos-apps-openstacknetworking-api</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
| 89 | <groupId>org.onosproject</groupId> |
Jian Li | a494768 | 2018-07-07 14:53:32 +0900 | [diff] [blame] | 90 | <artifactId>onos-apps-openstacknode-api</artifactId> |
| 91 | <version>${project.version}</version> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.onosproject</groupId> |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 96 | <artifactId>onlab-osgi</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>javax.ws.rs</groupId> |
| 102 | <artifactId>javax.ws.rs-api</artifactId> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.onosproject</groupId> |
| 107 | <artifactId>onos-cli</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.apache.karaf.shell</groupId> |
| 113 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
| 117 | <groupId>org.apache.felix</groupId> |
| 118 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 119 | <scope>provided</scope> |
| 120 | </dependency> |
| 121 | |
| 122 | <dependency> |
| 123 | <groupId>org.glassfish.jersey.containers</groupId> |
| 124 | <artifactId>jersey-container-servlet</artifactId> |
| 125 | </dependency> |
| 126 | |
| 127 | <dependency> |
| 128 | <groupId>org.glassfish.jersey.core</groupId> |
| 129 | <artifactId>jersey-client</artifactId> |
| 130 | </dependency> |
| 131 | |
| 132 | <dependency> |
| 133 | <groupId>org.glassfish.jersey.core</groupId> |
| 134 | <artifactId>jersey-common</artifactId> |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 135 | </dependency> |
| 136 | |
| 137 | <dependency> |
| 138 | <groupId>com.fasterxml.jackson.core</groupId> |
| 139 | <artifactId>jackson-databind</artifactId> |
| 140 | </dependency> |
| 141 | |
| 142 | <dependency> |
| 143 | <groupId>com.fasterxml.jackson.core</groupId> |
| 144 | <artifactId>jackson-annotations</artifactId> |
| 145 | </dependency> |
| 146 | |
| 147 | <dependency> |
| 148 | <groupId>commons-io</groupId> |
| 149 | <artifactId>commons-io</artifactId> |
| 150 | </dependency> |
| 151 | |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 152 | <dependency> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 153 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 154 | <artifactId>jersey-test-framework-core</artifactId> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
| 157 | |
| 158 | <dependency> |
| 159 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 160 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 161 | <scope>test</scope> |
| 162 | </dependency> |
| 163 | |
| 164 | <dependency> |
| 165 | <groupId>org.onosproject</groupId> |
| 166 | <artifactId>onlab-osgi</artifactId> |
| 167 | <classifier>tests</classifier> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | |
| 171 | <dependency> |
| 172 | <groupId>org.onosproject</groupId> |
| 173 | <artifactId>onos-rest</artifactId> |
| 174 | <version>${project.version}</version> |
| 175 | <classifier>tests</classifier> |
| 176 | <scope>test</scope> |
| 177 | </dependency> |
| 178 | |
| 179 | <dependency> |
Jian Li | 4a3fffa | 2018-06-10 23:12:40 +0900 | [diff] [blame] | 180 | <groupId>org.glassfish.jersey.inject</groupId> |
| 181 | <artifactId>jersey-hk2</artifactId> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
| 184 | |
| 185 | <dependency> |
| 186 | <groupId>org.onosproject</groupId> |
| 187 | <artifactId>onos-api</artifactId> |
| 188 | <classifier>tests</classifier> |
| 189 | <scope>test</scope> |
| 190 | </dependency> |
| 191 | |
| 192 | <dependency> |
| 193 | <groupId>com.google.guava</groupId> |
| 194 | <artifactId>guava-testlib</artifactId> |
| 195 | <scope>test</scope> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
| 199 | <groupId>org.onosproject</groupId> |
| 200 | <artifactId>onlab-junit</artifactId> |
| 201 | <scope>test</scope> |
| 202 | </dependency> |
| 203 | |
| 204 | <dependency> |
| 205 | <groupId>org.easymock</groupId> |
| 206 | <artifactId>easymock</artifactId> |
| 207 | <scope>test</scope> |
| 208 | </dependency> |
| 209 | |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 210 | </dependencies> |
| 211 | |
| 212 | <build> |
| 213 | <plugins> |
| 214 | <plugin> |
| 215 | <groupId>org.apache.felix</groupId> |
| 216 | <artifactId>maven-bundle-plugin</artifactId> |
| 217 | <extensions>true</extensions> |
| 218 | <configuration> |
| 219 | <instructions> |
| 220 | <_wab>src/main/webapp/</_wab> |
| 221 | <Include-Resource> |
| 222 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 223 | {maven-resources} |
| 224 | </Include-Resource> |
| 225 | <Bundle-SymbolicName> |
| 226 | ${project.groupId}.${project.artifactId} |
| 227 | </Bundle-SymbolicName> |
| 228 | <Import-Package> |
| 229 | *,org.glassfish.jersey.servlet |
| 230 | </Import-Package> |
Jian Li | 6e4da2f | 2018-05-21 18:11:31 +0900 | [diff] [blame] | 231 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 232 | </instructions> |
| 233 | </configuration> |
| 234 | </plugin> |
| 235 | |
| 236 | <plugin> |
| 237 | <groupId>org.apache.felix</groupId> |
| 238 | <artifactId>maven-scr-plugin</artifactId> |
| 239 | </plugin> |
| 240 | |
| 241 | <plugin> |
| 242 | <groupId>org.onosproject</groupId> |
| 243 | <artifactId>onos-maven-plugin</artifactId> |
| 244 | </plugin> |
| 245 | </plugins> |
| 246 | </build> |
| 247 | </project> |