Jian Li | 4f368e8 | 2018-07-02 14:22:22 +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> |
| 25 | <artifactId>onos-apps-openstackvtap</artifactId> |
| 26 | <version>1.14.0-SNAPSHOT</version> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-apps-openstackvtap-app</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>OpenStack vTap 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.openstackvtap</onos.app.name> |
| 38 | <onos.app.title>OpenStack vTap 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 vTap Application</onos.app.readme> |
| 42 | <web.context>/onos/openstackvtap</web.context> |
| 43 | <api.version>1.0.0</api.version> |
| 44 | <api.title>OpenStack vTap 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-openstackvtap-api</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onos-apps-openstacknetworking-api</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>org.onosproject</groupId> |
| 72 | <artifactId>onlab-osgi</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | </dependency> |
| 75 | |
| 76 | <dependency> |
| 77 | <groupId>javax.ws.rs</groupId> |
| 78 | <artifactId>javax.ws.rs-api</artifactId> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onos-cli</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.apache.karaf.shell</groupId> |
| 89 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 95 | <scope>provided</scope> |
| 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.glassfish.jersey.containers</groupId> |
| 100 | <artifactId>jersey-container-servlet</artifactId> |
| 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
| 104 | <groupId>org.glassfish.jersey.core</groupId> |
| 105 | <artifactId>jersey-client</artifactId> |
| 106 | </dependency> |
| 107 | |
| 108 | <dependency> |
| 109 | <groupId>org.glassfish.jersey.core</groupId> |
| 110 | <artifactId>jersey-common</artifactId> |
| 111 | <version>2.25</version> |
| 112 | </dependency> |
| 113 | |
| 114 | <dependency> |
| 115 | <groupId>com.fasterxml.jackson.core</groupId> |
| 116 | <artifactId>jackson-databind</artifactId> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>com.fasterxml.jackson.core</groupId> |
| 121 | <artifactId>jackson-annotations</artifactId> |
| 122 | </dependency> |
| 123 | |
| 124 | <dependency> |
| 125 | <groupId>commons-io</groupId> |
| 126 | <artifactId>commons-io</artifactId> |
| 127 | </dependency> |
| 128 | |
| 129 | <dependency> |
| 130 | <groupId>org.glassfish.jersey.core</groupId> |
| 131 | <artifactId>jersey-client</artifactId> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | |
| 135 | <dependency> |
| 136 | <groupId>org.glassfish.jersey.containers</groupId> |
| 137 | <artifactId>jersey-container-servlet</artifactId> |
| 138 | </dependency> |
| 139 | |
| 140 | <dependency> |
| 141 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 142 | <artifactId>jersey-test-framework-core</artifactId> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
| 145 | |
| 146 | <dependency> |
| 147 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 148 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 149 | <scope>test</scope> |
| 150 | </dependency> |
| 151 | |
| 152 | <dependency> |
| 153 | <groupId>org.onosproject</groupId> |
| 154 | <artifactId>onlab-osgi</artifactId> |
| 155 | <classifier>tests</classifier> |
| 156 | <scope>test</scope> |
| 157 | </dependency> |
| 158 | |
| 159 | <dependency> |
| 160 | <groupId>org.onosproject</groupId> |
| 161 | <artifactId>onos-rest</artifactId> |
| 162 | <version>${project.version}</version> |
| 163 | <classifier>tests</classifier> |
| 164 | <scope>test</scope> |
| 165 | </dependency> |
| 166 | |
| 167 | <dependency> |
| 168 | <groupId>org.glassfish.jersey.core</groupId> |
| 169 | <artifactId>jersey-common</artifactId> |
| 170 | <scope>test</scope> |
| 171 | </dependency> |
| 172 | |
| 173 | <dependency> |
| 174 | <groupId>org.glassfish.jersey.inject</groupId> |
| 175 | <artifactId>jersey-hk2</artifactId> |
| 176 | <scope>test</scope> |
| 177 | </dependency> |
| 178 | |
| 179 | <dependency> |
| 180 | <groupId>org.onosproject</groupId> |
| 181 | <artifactId>onos-api</artifactId> |
| 182 | <classifier>tests</classifier> |
| 183 | <scope>test</scope> |
| 184 | </dependency> |
| 185 | |
| 186 | <dependency> |
| 187 | <groupId>org.onosproject</groupId> |
| 188 | <artifactId>onlab-junit</artifactId> |
| 189 | <scope>test</scope> |
| 190 | </dependency> |
| 191 | |
| 192 | <dependency> |
| 193 | <groupId>org.easymock</groupId> |
| 194 | <artifactId>easymock</artifactId> |
| 195 | <scope>test</scope> |
| 196 | </dependency> |
| 197 | |
| 198 | </dependencies> |
| 199 | |
| 200 | <build> |
| 201 | <plugins> |
| 202 | <plugin> |
| 203 | <groupId>org.apache.felix</groupId> |
| 204 | <artifactId>maven-bundle-plugin</artifactId> |
| 205 | <extensions>true</extensions> |
| 206 | <configuration> |
| 207 | <instructions> |
| 208 | <_wab>src/main/webapp/</_wab> |
| 209 | <Include-Resource> |
| 210 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 211 | {maven-resources} |
| 212 | </Include-Resource> |
| 213 | <Bundle-SymbolicName> |
| 214 | ${project.groupId}.${project.artifactId} |
| 215 | </Bundle-SymbolicName> |
| 216 | <Import-Package> |
| 217 | *,org.glassfish.jersey.servlet |
| 218 | </Import-Package> |
| 219 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 220 | </instructions> |
| 221 | </configuration> |
| 222 | </plugin> |
| 223 | |
| 224 | <plugin> |
| 225 | <groupId>org.apache.felix</groupId> |
| 226 | <artifactId>maven-scr-plugin</artifactId> |
| 227 | </plugin> |
| 228 | |
| 229 | <plugin> |
| 230 | <groupId>org.onosproject</groupId> |
| 231 | <artifactId>onos-maven-plugin</artifactId> |
| 232 | </plugin> |
| 233 | </plugins> |
| 234 | </build> |
| 235 | </project> |