Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2014 Open Networking Laboratory |
| 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</artifactId> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 25 | <version>1.5.0-SNAPSHOT</version> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-cordvtn</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>Virtual tenant network service for CORD</description> |
| 33 | |
| 34 | <properties> |
| 35 | <onos.app.name>org.onosproject.cordvtn</onos.app.name> |
Hyunsun Moon | bfc47d1 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 36 | <web.context>/onos/cordvtn</web.context> |
| 37 | <api.version>1.0.0</api.version> |
| 38 | <api.title>CORD VTN REST API</api.title> |
| 39 | <api.description> |
| 40 | APIs for interacting with the CORD VTN application. |
| 41 | </api.description> |
| 42 | <api.package>org.onosproject.cordvtn.rest</api.package> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 43 | <onos.app.requires> |
| 44 | org.onosproject.ovsdb, |
| 45 | org.onosproject.openstackswitching |
| 46 | </onos.app.requires> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 47 | </properties> |
| 48 | |
| 49 | <dependencies> |
Hyunsun Moon | d0e932a | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 50 | <dependency> |
| 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>org.osgi.compendium</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-api</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onos-core-serializers</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
Hyunsun Moon | 1f14555 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-ovsdb-api</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
Hyunsun Moon | 4f02b3a | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onos-cli</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.karaf.shell</groupId> |
| 75 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 76 | <version>3.0.3</version> |
| 77 | </dependency> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 699f46b | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 80 | <artifactId>onos-rest</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onlab-rest</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>javax.ws.rs</groupId> |
| 90 | <artifactId>jsr311-api</artifactId> |
| 91 | <version>1.1.1</version> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>com.sun.jersey</groupId> |
| 95 | <artifactId>jersey-servlet</artifactId> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>com.fasterxml.jackson.core</groupId> |
| 99 | <artifactId>jackson-databind</artifactId> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>com.fasterxml.jackson.core</groupId> |
| 103 | <artifactId>jackson-annotations</artifactId> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 107 | <artifactId>onos-app-openstackswitching-api</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | </dependency> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 110 | </dependencies> |
| 111 | |
Hyunsun Moon | bfc47d1 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 112 | <build> |
| 113 | <plugins> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>maven-bundle-plugin</artifactId> |
| 117 | <extensions>true</extensions> |
| 118 | <configuration> |
| 119 | <instructions> |
| 120 | <_wab>src/main/webapp/</_wab> |
| 121 | <Include-Resource> |
| 122 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 123 | {maven-resources} |
| 124 | </Include-Resource> |
| 125 | <Bundle-SymbolicName> |
| 126 | ${project.groupId}.${project.artifactId} |
| 127 | </Bundle-SymbolicName> |
| 128 | <Import-Package> |
| 129 | org.slf4j, |
| 130 | org.osgi.framework, |
| 131 | javax.ws.rs, |
| 132 | javax.ws.rs.core, |
| 133 | com.sun.jersey.api.core, |
| 134 | com.sun.jersey.spi.container.servlet, |
| 135 | com.sun.jersey.server.impl.container.servlet, |
| 136 | com.fasterxml.jackson.databind, |
| 137 | com.fasterxml.jackson.databind.node, |
| 138 | com.fasterxml.jackson.core, |
| 139 | org.apache.karaf.shell.commands, |
| 140 | org.apache.karaf.shell.console, |
| 141 | com.google.common.*, |
| 142 | org.onlab.packet.*, |
| 143 | org.onlab.rest.*, |
| 144 | org.onosproject.*, |
| 145 | org.onlab.util.*, |
| 146 | org.jboss.netty.util.* |
| 147 | </Import-Package> |
| 148 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 149 | </instructions> |
| 150 | </configuration> |
| 151 | </plugin> |
| 152 | </plugins> |
| 153 | </build> |
| 154 | |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 155 | </project> |