sangho | f816411 | 2017-07-14 14:33:16 +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 | f816411 | 2017-07-14 14:33:16 +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" |
| 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-openstacknode</artifactId> |
ONOS Jenkins User | 9d1db1c | 2019-03-19 21:01:39 +0000 | [diff] [blame] | 25 | <version>1.13.9-SNAPSHOT</version> |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-apps-openstacknode-app</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>SONA Openstack Node Bootstrap Application</description> |
| 32 | |
| 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.openstacknode</onos.app.name> |
| 35 | <onos.app.title>OpenStack Node Bootstrap App</onos.app.title> |
| 36 | <onos.app.category>Utility</onos.app.category> |
| 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <onos.app.readme>SONA Openstack Node Bootstrap Application</onos.app.readme> |
| 39 | <onos.app.requires> |
| 40 | org.onosproject.ovsdb-base, |
| 41 | org.onosproject.drivers.ovsdb |
| 42 | </onos.app.requires> |
Jian Li | c84e3f1 | 2018-02-13 15:12:18 +0900 | [diff] [blame] | 43 | |
| 44 | <web.context>/onos/openstacknode</web.context> |
| 45 | <api.version>1.0</api.version> |
| 46 | <api.title>OpenStack Node API</api.title> |
| 47 | <api.description> |
| 48 | REST API for OpenStack Node |
| 49 | </api.description> |
| 50 | <api.package>org.onosproject.openstacknode.web</api.package> |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 51 | </properties> |
| 52 | |
| 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>org.osgi</groupId> |
| 56 | <artifactId>org.osgi.compendium</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onos-rest</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-apps-openstacknode-api</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onlab-rest</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>javax.ws.rs</groupId> |
| 75 | <artifactId>javax.ws.rs-api</artifactId> |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onos-api</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onos-core-serializers</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onos-cli</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.onosproject</groupId> |
| 93 | <artifactId>onos-protocols-ovsdb-api</artifactId> |
| 94 | <version>${project.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>com.fasterxml.jackson.core</groupId> |
| 98 | <artifactId>jackson-databind</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.fasterxml.jackson.core</groupId> |
| 102 | <artifactId>jackson-annotations</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.karaf.shell</groupId> |
| 106 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
| 110 | <groupId>org.onosproject</groupId> |
| 111 | <artifactId>onos-api</artifactId> |
| 112 | <classifier>tests</classifier> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
| 117 | <groupId>com.google.guava</groupId> |
| 118 | <artifactId>guava-testlib</artifactId> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | |
| 122 | <dependency> |
| 123 | <groupId>org.onosproject</groupId> |
| 124 | <artifactId>onlab-junit</artifactId> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
| 127 | |
| 128 | <dependency> |
| 129 | <groupId>org.easymock</groupId> |
| 130 | <artifactId>easymock</artifactId> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | |
Jian Li | c84e3f1 | 2018-02-13 15:12:18 +0900 | [diff] [blame] | 134 | <dependency> |
| 135 | <groupId>org.glassfish.jersey.core</groupId> |
| 136 | <artifactId>jersey-client</artifactId> |
| 137 | <scope>test</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.glassfish.jersey.containers</groupId> |
| 141 | <artifactId>jersey-container-servlet</artifactId> |
| 142 | </dependency> |
| 143 | |
| 144 | <dependency> |
| 145 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 146 | <artifactId>jersey-test-framework-core</artifactId> |
| 147 | <scope>test</scope> |
| 148 | </dependency> |
| 149 | |
| 150 | <dependency> |
| 151 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 152 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 153 | <scope>test</scope> |
| 154 | </dependency> |
| 155 | |
| 156 | <dependency> |
| 157 | <groupId>org.onosproject</groupId> |
| 158 | <artifactId>onlab-osgi</artifactId> |
| 159 | <classifier>tests</classifier> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | |
| 163 | <dependency> |
| 164 | <groupId>org.onosproject</groupId> |
| 165 | <artifactId>onos-rest</artifactId> |
| 166 | <version>${project.version}</version> |
| 167 | <classifier>tests</classifier> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | |
Jian Li | c5cd662 | 2018-03-08 12:08:56 +0900 | [diff] [blame] | 171 | <dependency> |
| 172 | <groupId>org.glassfish.jersey.core</groupId> |
| 173 | <artifactId>jersey-common</artifactId> |
| 174 | <scope>test</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
| 177 | <groupId>org.glassfish.jersey.inject</groupId> |
| 178 | <artifactId>jersey-hk2</artifactId> |
| 179 | <scope>test</scope> |
| 180 | </dependency> |
| 181 | |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 182 | </dependencies> |
Jian Li | c84e3f1 | 2018-02-13 15:12:18 +0900 | [diff] [blame] | 183 | |
| 184 | <build> |
| 185 | <plugins> |
| 186 | <plugin> |
| 187 | <groupId>org.apache.felix</groupId> |
| 188 | <artifactId>maven-bundle-plugin</artifactId> |
| 189 | <extensions>true</extensions> |
| 190 | <configuration> |
| 191 | <instructions> |
| 192 | <_wab>src/main/webapp/</_wab> |
| 193 | <Include-Resource> |
| 194 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 195 | {maven-resources} |
| 196 | </Include-Resource> |
| 197 | <Bundle-SymbolicName> |
| 198 | ${project.groupId}.${project.artifactId} |
| 199 | </Bundle-SymbolicName> |
| 200 | <Import-Package> |
| 201 | *,org.glassfish.jersey.servlet |
| 202 | </Import-Package> |
| 203 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 204 | </instructions> |
| 205 | </configuration> |
| 206 | </plugin> |
| 207 | </plugins> |
| 208 | </build> |
sangho | f816411 | 2017-07-14 14:33:16 +0900 | [diff] [blame] | 209 | </project> |