Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 8e57fd5 | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [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> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
| 25 | <version>1.8.0</version> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>vtn</artifactId> |
alshabib | c32814d | 2017-01-04 21:28:05 -0800 | [diff] [blame] | 31 | <version>1.2-SNAPSHOT</version> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
| 33 | |
| 34 | <description>Virtual tenant network service for CORD</description> |
| 35 | |
| 36 | <properties> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 37 | <onos.app.name>org.opencord.vtn</onos.app.name> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 38 | <onos.version>1.8.0</onos.version> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 39 | <onos.app.title>VTN App</onos.app.title> |
| 40 | <onos.app.category>Traffic Steering</onos.app.category> |
| 41 | <onos.app.url>http://opencord.org</onos.app.url> |
Hyunsun Moon | 2037937 | 2016-06-07 14:52:46 -0700 | [diff] [blame] | 42 | <onos.app.requires> |
| 43 | org.onosproject.ovsdb-base, |
| 44 | org.onosproject.drivers.ovsdb, |
Hyunsun Moon | 2037937 | 2016-06-07 14:52:46 -0700 | [diff] [blame] | 45 | org.opencord.config |
| 46 | </onos.app.requires> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 47 | <web.context>/onos/cordvtn</web.context> |
| 48 | <api.version>1.0.0</api.version> |
| 49 | <api.title>CORD VTN REST API</api.title> |
| 50 | <api.description> |
| 51 | APIs for interacting with the CORD VTN application. |
| 52 | </api.description> |
Hyunsun Moon | 26b8109 | 2016-06-07 01:29:56 -0700 | [diff] [blame] | 53 | <api.package>org.opencord.cordvtn.rest</api.package> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 54 | </properties> |
| 55 | |
| 56 | <dependencies> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 57 | <dependency> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-api</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 60 | <version>${onos.version}</version> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 61 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 62 | |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-core-serializers</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 66 | <version>${onos.version}</version> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 67 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 68 | |
Hyunsun Moon | 7dca9b3 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
alshabib | 22c818b | 2016-09-27 14:25:55 -0700 | [diff] [blame] | 71 | <artifactId>onos-protocols-ovsdb-api</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 72 | <version>${onos.version}</version> |
Hyunsun Moon | 7dca9b3 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 73 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 74 | |
Hyunsun Moon | 838b19b | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
| 77 | <artifactId>onos-cli</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 78 | <version>${onos.version}</version> |
Hyunsun Moon | 838b19b | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 79 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 80 | |
Hyunsun Moon | 05f528a | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 83 | <artifactId>onos-rest</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 84 | <version>${onos.version}</version> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 85 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 86 | |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onlab-rest</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 90 | <version>${onos.version}</version> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 91 | </dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 92 | |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 93 | <dependency> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 94 | <groupId>org.opencord</groupId> |
Hyunsun Moon | d6881cc | 2016-06-09 10:56:03 -0700 | [diff] [blame] | 95 | <artifactId>cord-config</artifactId> |
Hyunsun Moon | e7e4bb3 | 2016-05-16 04:32:45 -0700 | [diff] [blame] | 96 | <version>${project.version}</version> |
| 97 | </dependency> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 98 | |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.onosproject</groupId> |
| 101 | <artifactId>onlab-osgi</artifactId> |
| 102 | <version>${onos.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.onosproject</groupId> |
| 107 | <artifactId>onlab-misc</artifactId> |
| 108 | <version>${onos.version}</version> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.onosproject</groupId> |
| 113 | <artifactId>onos-core-common</artifactId> |
| 114 | <version>${onos.version}</version> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.onosproject</groupId> |
alshabib | 22c818b | 2016-09-27 14:25:55 -0700 | [diff] [blame] | 119 | <artifactId>onos-protocols-ovsdb-rfc</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 120 | <version>${onos.version}</version> |
| 121 | </dependency> |
| 122 | |
Hyunsun Moon | f5b2153 | 2016-10-25 15:45:41 -0700 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>org.onosproject</groupId> |
| 125 | <artifactId>onlab-junit</artifactId> |
| 126 | <version>${onos.version}</version> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 130 | <dependency> |
Hyunsun Moon | 2c3f0ee | 2017-04-06 16:47:21 +0900 | [diff] [blame] | 131 | <groupId>org.onosproject</groupId> |
| 132 | <artifactId>onos-core-common</artifactId> |
| 133 | <version>${onos.version}</version> |
| 134 | <classifier>tests</classifier> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | |
| 138 | <dependency> |
| 139 | <groupId>org.onosproject</groupId> |
| 140 | <artifactId>onos-api</artifactId> |
| 141 | <version>${onos.version}</version> |
| 142 | <classifier>tests</classifier> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
| 145 | |
| 146 | <dependency> |
| 147 | <groupId>com.google.guava</groupId> |
| 148 | <artifactId>guava-testlib</artifactId> |
| 149 | <version>${guava.version}</version> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | |
| 153 | <dependency> |
| 154 | <groupId>org.easymock</groupId> |
| 155 | <artifactId>easymock</artifactId> |
| 156 | <scope>test</scope> |
| 157 | </dependency> |
| 158 | |
| 159 | <dependency> |
| 160 | <groupId>org.powermock</groupId> |
| 161 | <artifactId>powermock-core</artifactId> |
| 162 | <version>1.6.6</version> |
| 163 | <scope>test</scope> |
| 164 | </dependency> |
| 165 | |
| 166 | <dependency> |
| 167 | <groupId>org.powermock</groupId> |
| 168 | <artifactId>powermock-module-junit4</artifactId> |
| 169 | <version>1.6.6</version> |
| 170 | <scope>test</scope> |
| 171 | </dependency> |
| 172 | |
| 173 | <dependency> |
| 174 | <groupId>org.powermock</groupId> |
| 175 | <artifactId>powermock-api-easymock</artifactId> |
| 176 | <version>1.6.6</version> |
| 177 | <scope>test</scope> |
| 178 | </dependency> |
| 179 | |
| 180 | <dependency> |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 181 | <groupId>com.jcraft</groupId> |
| 182 | <artifactId>jsch</artifactId> |
| 183 | <version>0.1.53</version> |
| 184 | </dependency> |
| 185 | |
| 186 | <dependency> |
| 187 | <groupId>org.pacesys</groupId> |
| 188 | <artifactId>openstack4j-core</artifactId> |
| 189 | <version>2.11</version> |
| 190 | </dependency> |
| 191 | |
| 192 | <dependency> |
| 193 | <groupId>org.pacesys.openstack4j.connectors</groupId> |
| 194 | <artifactId>openstack4j-http-connector</artifactId> |
| 195 | <version>2.11</version> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
| 199 | <groupId>org.pacesys.openstack4j.connectors</groupId> |
| 200 | <artifactId>openstack4j-httpclient</artifactId> |
| 201 | <version>2.11</version> |
| 202 | </dependency> |
| 203 | |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 204 | </dependencies> |
| 205 | |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 206 | <build> |
| 207 | <plugins> |
| 208 | <plugin> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 209 | <groupId>org.onosproject</groupId> |
| 210 | <artifactId>onos-maven-plugin</artifactId> |
| 211 | </plugin> |
| 212 | <plugin> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 213 | <groupId>org.apache.felix</groupId> |
Hyunsun Moon | 2037937 | 2016-06-07 14:52:46 -0700 | [diff] [blame] | 214 | <artifactId>maven-scr-plugin</artifactId> |
| 215 | <version>1.21.0</version> |
| 216 | <executions> |
| 217 | <execution> |
| 218 | <id>generate-scr-srcdescriptor</id> |
| 219 | <goals> |
| 220 | <goal>scr</goal> |
| 221 | </goals> |
| 222 | </execution> |
| 223 | </executions> |
| 224 | <configuration> |
| 225 | <supportedProjectTypes> |
| 226 | <supportedProjectType>bundle</supportedProjectType> |
| 227 | <supportedProjectType>war</supportedProjectType> |
| 228 | </supportedProjectTypes> |
| 229 | </configuration> |
| 230 | </plugin> |
| 231 | <plugin> |
| 232 | <groupId>org.apache.felix</groupId> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 233 | <artifactId>maven-bundle-plugin</artifactId> |
| 234 | <extensions>true</extensions> |
| 235 | <configuration> |
| 236 | <instructions> |
| 237 | <_wab>src/main/webapp/</_wab> |
| 238 | <Include-Resource> |
| 239 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 240 | {maven-resources} |
| 241 | </Include-Resource> |
| 242 | <Bundle-SymbolicName> |
| 243 | ${project.groupId}.${project.artifactId} |
| 244 | </Bundle-SymbolicName> |
| 245 | <Import-Package> |
Hyunsun Moon | eaf75e6 | 2016-09-27 16:40:23 -0700 | [diff] [blame] | 246 | !org.apache.http.*, |
| 247 | !com.fasterxml.jackson.dataformat.*, |
| 248 | !javax.annotation, |
Brian O'Connor | 72a0ee1 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 249 | *,org.glassfish.jersey.servlet |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 250 | </Import-Package> |
Hyunsun Moon | eaf75e6 | 2016-09-27 16:40:23 -0700 | [diff] [blame] | 251 | <Embed-Dependency> |
| 252 | openstack4j-core, |
| 253 | openstack4j-http-connector, |
| 254 | openstack4j-httpclient |
| 255 | </Embed-Dependency> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 256 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 257 | </instructions> |
| 258 | </configuration> |
| 259 | </plugin> |
| 260 | </plugins> |
| 261 | </build> |
| 262 | |
Charles Chan | febea2f | 2016-12-14 16:15:17 -0800 | [diff] [blame] | 263 | <repositories> |
| 264 | <repository> |
| 265 | <id>central</id> |
| 266 | <name>Central Repository</name> |
| 267 | <url>http://repo.maven.apache.org/maven2</url> |
| 268 | <layout>default</layout> |
| 269 | <snapshots> |
| 270 | <enabled>false</enabled> |
| 271 | </snapshots> |
| 272 | <releases> |
| 273 | <enabled>true</enabled> |
| 274 | <updatePolicy>always</updatePolicy> |
| 275 | <checksumPolicy>fail</checksumPolicy> |
| 276 | </releases> |
| 277 | </repository> |
| 278 | |
| 279 | <repository> |
| 280 | <id>snapshots</id> |
| 281 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 282 | <snapshots> |
| 283 | <enabled>true</enabled> |
| 284 | <updatePolicy>always</updatePolicy> |
| 285 | <checksumPolicy>fail</checksumPolicy> |
| 286 | </snapshots> |
| 287 | </repository> |
| 288 | </repositories> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 289 | </project> |