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> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 24 | <artifactId>onos</artifactId> |
Charles Chan | 5dea585 | 2016-06-20 13:58:59 -0700 | [diff] [blame] | 25 | <version>1.6.0-rc4</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> |
| 31 | <version>1.0-SNAPSHOT</version> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
| 33 | |
alshabib | c14b18a | 2016-06-02 22:02:37 -0700 | [diff] [blame] | 34 | <!--FIXME remove this one the released bits are out--> |
| 35 | <repositories> |
| 36 | <repository> |
| 37 | <id>oss-staging</id> |
| 38 | <name>OSS Staging</name> |
| 39 | <url>https://oss.sonatype.org/content/groups/staging</url> |
| 40 | </repository> |
| 41 | </repositories> |
| 42 | |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 43 | <description>Virtual tenant network service for CORD</description> |
| 44 | |
| 45 | <properties> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 46 | <onos.app.name>org.opencord.vtn</onos.app.name> |
Charles Chan | 5dea585 | 2016-06-20 13:58:59 -0700 | [diff] [blame] | 47 | <onos.version>1.6.0-rc4</onos.version> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 48 | <onos.app.title>VTN App</onos.app.title> |
| 49 | <onos.app.category>Traffic Steering</onos.app.category> |
| 50 | <onos.app.url>http://opencord.org</onos.app.url> |
Hyunsun Moon | 2037937 | 2016-06-07 14:52:46 -0700 | [diff] [blame] | 51 | <onos.app.requires> |
| 52 | org.onosproject.ovsdb-base, |
| 53 | org.onosproject.drivers.ovsdb, |
| 54 | org.onosproject.dhcp, |
| 55 | org.onosproject.xosclient, |
| 56 | org.opencord.config |
| 57 | </onos.app.requires> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 58 | <web.context>/onos/cordvtn</web.context> |
| 59 | <api.version>1.0.0</api.version> |
| 60 | <api.title>CORD VTN REST API</api.title> |
| 61 | <api.description> |
| 62 | APIs for interacting with the CORD VTN application. |
| 63 | </api.description> |
Hyunsun Moon | 26b8109 | 2016-06-07 01:29:56 -0700 | [diff] [blame] | 64 | <api.package>org.opencord.cordvtn.rest</api.package> |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 65 | </properties> |
| 66 | |
| 67 | <dependencies> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>org.osgi</groupId> |
| 70 | <artifactId>org.osgi.compendium</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onos-api</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 75 | <version>${onos.version}</version> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onos-core-serializers</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 80 | <version>${onos.version}</version> |
Hyunsun Moon | e9d7599 | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 81 | </dependency> |
Hyunsun Moon | 7dca9b3 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onos-ovsdb-api</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 85 | <version>${onos.version}</version> |
Hyunsun Moon | 7dca9b3 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 86 | </dependency> |
Hyunsun Moon | 838b19b | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onos-cli</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 90 | <version>${onos.version}</version> |
Hyunsun Moon | 838b19b | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.apache.karaf.shell</groupId> |
| 94 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Jian Li | 466dd33 | 2016-01-15 15:46:16 -0800 | [diff] [blame] | 95 | <version>3.0.5</version> |
Hyunsun Moon | 838b19b | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 96 | </dependency> |
Hyunsun Moon | 05f528a | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 99 | <artifactId>onos-rest</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 100 | <version>${onos.version}</version> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onosproject</groupId> |
| 104 | <artifactId>onlab-rest</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 105 | <version>${onos.version}</version> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>javax.ws.rs</groupId> |
Jian Li | 7ad803f | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 109 | <artifactId>javax.ws.rs-api</artifactId> |
| 110 | <version>2.0.1</version> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 111 | </dependency> |
| 112 | <dependency> |
Jian Li | 7ad803f | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 113 | <groupId>org.glassfish.jersey.containers</groupId> |
| 114 | <artifactId>jersey-container-servlet</artifactId> |
Hyunsun Moon | 9274aaf | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>com.fasterxml.jackson.core</groupId> |
| 118 | <artifactId>jackson-databind</artifactId> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>com.fasterxml.jackson.core</groupId> |
| 122 | <artifactId>jackson-annotations</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 8b530e3 | 2016-02-03 00:11:11 -0800 | [diff] [blame] | 126 | <artifactId>onos-app-dhcp-api</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 127 | <version>${onos.version}</version> |
Hyunsun Moon | 8b530e3 | 2016-02-03 00:11:11 -0800 | [diff] [blame] | 128 | </dependency> |
Hyunsun Moon | fba9701 | 2016-02-05 16:55:33 -0800 | [diff] [blame] | 129 | <dependency> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 130 | <groupId>org.opencord</groupId> |
Hyunsun Moon | d6881cc | 2016-06-09 10:56:03 -0700 | [diff] [blame] | 131 | <artifactId>cord-config</artifactId> |
Hyunsun Moon | e7e4bb3 | 2016-05-16 04:32:45 -0700 | [diff] [blame] | 132 | <version>${project.version}</version> |
| 133 | </dependency> |
| 134 | <dependency> |
Hyunsun Moon | fba9701 | 2016-02-05 16:55:33 -0800 | [diff] [blame] | 135 | <groupId>com.jcraft</groupId> |
| 136 | <artifactId>jsch</artifactId> |
| 137 | <version>0.1.53</version> |
| 138 | </dependency> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 139 | <dependency> |
| 140 | <groupId>org.onosproject</groupId> |
| 141 | <artifactId>onos-app-xos-client</artifactId> |
| 142 | <version>${onos.version}</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.apache.felix</groupId> |
| 146 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 147 | </dependency> |
| 148 | |
| 149 | <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies --> |
| 150 | <dependency> |
| 151 | <groupId>org.onosproject</groupId> |
| 152 | <artifactId>onlab-osgi</artifactId> |
| 153 | <version>${onos.version}</version> |
| 154 | </dependency> |
| 155 | |
| 156 | <dependency> |
| 157 | <groupId>org.onosproject</groupId> |
| 158 | <artifactId>onlab-misc</artifactId> |
| 159 | <version>${onos.version}</version> |
| 160 | </dependency> |
| 161 | |
| 162 | <dependency> |
| 163 | <groupId>org.onosproject</groupId> |
| 164 | <artifactId>onos-core-common</artifactId> |
| 165 | <version>${onos.version}</version> |
| 166 | </dependency> |
| 167 | |
| 168 | <dependency> |
| 169 | <groupId>org.onosproject</groupId> |
| 170 | <artifactId>onos-incubator-api</artifactId> |
| 171 | <version>${onos.version}</version> |
| 172 | </dependency> |
| 173 | |
| 174 | <dependency> |
| 175 | <groupId>org.onosproject</groupId> |
| 176 | <artifactId>onos-ovsdb-rfc</artifactId> |
| 177 | <version>${onos.version}</version> |
| 178 | </dependency> |
| 179 | |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 180 | </dependencies> |
| 181 | |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 182 | <build> |
| 183 | <plugins> |
| 184 | <plugin> |
alshabib | b4d3171 | 2016-06-01 18:51:03 -0700 | [diff] [blame] | 185 | <groupId>org.onosproject</groupId> |
| 186 | <artifactId>onos-maven-plugin</artifactId> |
| 187 | </plugin> |
| 188 | <plugin> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 189 | <groupId>org.apache.felix</groupId> |
Hyunsun Moon | 2037937 | 2016-06-07 14:52:46 -0700 | [diff] [blame] | 190 | <artifactId>maven-scr-plugin</artifactId> |
| 191 | <version>1.21.0</version> |
| 192 | <executions> |
| 193 | <execution> |
| 194 | <id>generate-scr-srcdescriptor</id> |
| 195 | <goals> |
| 196 | <goal>scr</goal> |
| 197 | </goals> |
| 198 | </execution> |
| 199 | </executions> |
| 200 | <configuration> |
| 201 | <supportedProjectTypes> |
| 202 | <supportedProjectType>bundle</supportedProjectType> |
| 203 | <supportedProjectType>war</supportedProjectType> |
| 204 | </supportedProjectTypes> |
| 205 | </configuration> |
| 206 | </plugin> |
| 207 | <plugin> |
| 208 | <groupId>org.apache.felix</groupId> |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 209 | <artifactId>maven-bundle-plugin</artifactId> |
| 210 | <extensions>true</extensions> |
| 211 | <configuration> |
| 212 | <instructions> |
| 213 | <_wab>src/main/webapp/</_wab> |
| 214 | <Include-Resource> |
| 215 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 216 | {maven-resources} |
| 217 | </Include-Resource> |
| 218 | <Bundle-SymbolicName> |
| 219 | ${project.groupId}.${project.artifactId} |
| 220 | </Bundle-SymbolicName> |
| 221 | <Import-Package> |
Brian O'Connor | 72a0ee1 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 222 | *,org.glassfish.jersey.servlet |
Hyunsun Moon | 97eaf50 | 2015-12-07 14:06:28 -0800 | [diff] [blame] | 223 | </Import-Package> |
| 224 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 225 | </instructions> |
| 226 | </configuration> |
| 227 | </plugin> |
| 228 | </plugins> |
| 229 | </build> |
| 230 | |
Hyunsun Moon | 950f639 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 231 | </project> |