sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 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" |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps</artifactId> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 25 | <version>1.13.0-SNAPSHOT</version> |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
Hyunsun Moon | 9add1c5 | 2017-05-22 14:00:10 +0900 | [diff] [blame] | 28 | <artifactId>onos-apps-openstacknetworking</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 30 | |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 31 | <properties> |
| 32 | <onos.app.name>org.onosproject.openstacknetworking</onos.app.name> |
| 33 | <onos.app.title>OpenStack Networking App</onos.app.title> |
| 34 | <onos.app.category>Traffic Steering</onos.app.category> |
| 35 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 36 | <onos.app.readme>OpenStack networking application</onos.app.readme> |
| 37 | <onos.app.requires> |
daniel park | e49eb38 | 2017-04-05 16:48:28 +0900 | [diff] [blame] | 38 | org.onosproject.openstacknode |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 39 | </onos.app.requires> |
| 40 | <web.context>/onos/openstacknetworking</web.context> |
| 41 | <api.version>1.0.0</api.version> |
| 42 | <api.title>ONOS OpenStack Networking REST API</api.title> |
| 43 | <api.description> |
| 44 | APIs for interacting with OpenStack Neutron ONOS driver. |
| 45 | </api.description> |
| 46 | <api.package>org.onosproject.openstacknetworking.web</api.package> |
| 47 | </properties> |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 48 | |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-core-serializers</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-cli</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 65 | <groupId>org.apache.karaf.shell</groupId> |
| 66 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onos-rest</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onlab-rest</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onlab-osgi</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onlab-misc</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.onosproject</groupId> |
| 92 | <artifactId>onos-core-common</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.onosproject</groupId> |
| 96 | <artifactId>onlab-junit</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | c7eb0d0 | 2017-03-27 18:13:00 +0900 | [diff] [blame] | 102 | <artifactId>onos-api</artifactId> |
| 103 | <classifier>tests</classifier> |
| 104 | <scope>test</scope> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.onosproject</groupId> |
| 108 | <artifactId>onos-core-common</artifactId> |
| 109 | <classifier>tests</classifier> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.onosproject</groupId> |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 114 | <artifactId>onos-apps-openstacknode-api</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 115 | <version>${project.version}</version> |
| 116 | </dependency> |
| 117 | <dependency> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 118 | <groupId>javax.ws.rs</groupId> |
| 119 | <artifactId>javax.ws.rs-api</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 120 | </dependency> |
| 121 | <dependency> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 122 | <groupId>com.fasterxml.jackson.core</groupId> |
| 123 | <artifactId>jackson-databind</artifactId> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>com.fasterxml.jackson.core</groupId> |
| 127 | <artifactId>jackson-annotations</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.osgi</groupId> |
| 131 | <artifactId>org.osgi.compendium</artifactId> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.osgi</groupId> |
| 135 | <artifactId>org.osgi.core</artifactId> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.glassfish.jersey.core</groupId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 139 | <artifactId>jersey-common</artifactId> |
| 140 | <version>2.25</version> |
| 141 | </dependency> |
| 142 | <dependency> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 143 | <groupId>org.pacesys</groupId> |
| 144 | <artifactId>openstack4j-core</artifactId> |
Jian Li | 02a9498 | 2018-02-03 02:49:07 +0900 | [diff] [blame] | 145 | <version>3.1.0</version> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 146 | </dependency> |
| 147 | <dependency> |
| 148 | <groupId>org.pacesys.openstack4j.connectors</groupId> |
| 149 | <artifactId>openstack4j-http-connector</artifactId> |
Jian Li | 02a9498 | 2018-02-03 02:49:07 +0900 | [diff] [blame] | 150 | <version>3.1.0</version> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.pacesys.openstack4j.connectors</groupId> |
| 154 | <artifactId>openstack4j-httpclient</artifactId> |
Jian Li | 02a9498 | 2018-02-03 02:49:07 +0900 | [diff] [blame] | 155 | <version>3.1.0</version> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>com.github.fge</groupId> |
| 159 | <artifactId>json-patch</artifactId> |
| 160 | <version>1.9</version> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>com.github.fge</groupId> |
| 164 | <artifactId>jackson-coreutils</artifactId> |
| 165 | <version>1.6</version> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>com.github.fge</groupId> |
| 169 | <artifactId>btf</artifactId> |
| 170 | <version>1.2</version> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>com.github.fge</groupId> |
| 174 | <artifactId>msg-simple</artifactId> |
| 175 | <version>1.1</version> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 176 | </dependency> |
Jian Li | 4a80a57 | 2018-02-16 14:41:47 +0900 | [diff] [blame] | 177 | <dependency> |
| 178 | <groupId>org.yaml</groupId> |
| 179 | <artifactId>snakeyaml</artifactId> |
| 180 | <version>1.15</version> |
| 181 | </dependency> |
Jian Li | 5c51d90a | 2018-02-20 14:10:25 +0900 | [diff] [blame] | 182 | |
| 183 | <dependency> |
| 184 | <groupId>org.glassfish.jersey.core</groupId> |
| 185 | <artifactId>jersey-client</artifactId> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>org.glassfish.jersey.containers</groupId> |
| 189 | <artifactId>jersey-container-servlet</artifactId> |
| 190 | </dependency> |
| 191 | |
| 192 | <dependency> |
| 193 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 194 | <artifactId>jersey-test-framework-core</artifactId> |
| 195 | <scope>test</scope> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
| 199 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 200 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 201 | <scope>test</scope> |
| 202 | </dependency> |
| 203 | |
| 204 | <dependency> |
| 205 | <groupId>org.onosproject</groupId> |
| 206 | <artifactId>onlab-osgi</artifactId> |
| 207 | <classifier>tests</classifier> |
| 208 | <scope>test</scope> |
| 209 | </dependency> |
| 210 | |
| 211 | <dependency> |
| 212 | <groupId>org.onosproject</groupId> |
| 213 | <artifactId>onos-rest</artifactId> |
| 214 | <version>${project.version}</version> |
| 215 | <classifier>tests</classifier> |
| 216 | <scope>test</scope> |
| 217 | </dependency> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 218 | </dependencies> |
| 219 | |
| 220 | <build> |
| 221 | <plugins> |
| 222 | <plugin> |
| 223 | <groupId>org.onosproject</groupId> |
| 224 | <artifactId>onos-maven-plugin</artifactId> |
| 225 | </plugin> |
| 226 | <plugin> |
| 227 | <groupId>org.apache.felix</groupId> |
| 228 | <artifactId>maven-scr-plugin</artifactId> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 229 | <executions> |
| 230 | <execution> |
| 231 | <id>generate-scr-srcdescriptor</id> |
| 232 | <goals> |
| 233 | <goal>scr</goal> |
| 234 | </goals> |
| 235 | </execution> |
| 236 | </executions> |
| 237 | <configuration> |
| 238 | <supportedProjectTypes> |
| 239 | <supportedProjectType>bundle</supportedProjectType> |
| 240 | <supportedProjectType>war</supportedProjectType> |
| 241 | </supportedProjectTypes> |
| 242 | </configuration> |
| 243 | </plugin> |
| 244 | <plugin> |
| 245 | <groupId>org.apache.felix</groupId> |
| 246 | <artifactId>maven-bundle-plugin</artifactId> |
| 247 | <extensions>true</extensions> |
| 248 | <configuration> |
| 249 | <instructions> |
| 250 | <_wab>src/main/webapp/</_wab> |
| 251 | <Include-Resource> |
| 252 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 253 | {maven-resources} |
| 254 | </Include-Resource> |
| 255 | <Bundle-SymbolicName> |
| 256 | ${project.groupId}.${project.artifactId} |
| 257 | </Bundle-SymbolicName> |
| 258 | <Web-ContextPath>${web.context}</Web-ContextPath> |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 259 | <Import-Package> |
| 260 | !org.apache.http.*, |
| 261 | !com.fasterxml.jackson.dataformat.*, |
| 262 | !javax.annotation, |
| 263 | *,org.glassfish.jersey.servlet |
| 264 | </Import-Package> |
| 265 | <Embed-Dependency> |
| 266 | openstack4j-core, |
| 267 | openstack4j-http-connector, |
Jian Li | 02a9498 | 2018-02-03 02:49:07 +0900 | [diff] [blame] | 268 | openstack4j-httpclient, |
| 269 | json-patch, |
| 270 | jackson-coreutils, |
| 271 | btf, |
Jian Li | 4a80a57 | 2018-02-16 14:41:47 +0900 | [diff] [blame] | 272 | msg-simple, |
| 273 | snakeyaml |
Hyunsun Moon | 44aac66 | 2017-02-18 02:07:01 +0900 | [diff] [blame] | 274 | </Embed-Dependency> |
Hyunsun Moon | 0540087 | 2017-02-07 17:11:25 +0900 | [diff] [blame] | 275 | </instructions> |
| 276 | </configuration> |
| 277 | </plugin> |
| 278 | </plugins> |
| 279 | </build> |
| 280 | |
| 281 | |
sangho | 0c2a3da | 2016-02-16 13:39:07 +0900 | [diff] [blame] | 282 | </project> |