Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -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 | --> |
xuzhang | 41ad728 | 2015-08-07 15:07:34 +0800 | [diff] [blame] | 17 | <project |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 19 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
samueljcc | da82eb8 | 2015-10-07 16:29:52 -0700 | [diff] [blame] | 24 | <artifactId>onos-app-vtn</artifactId> |
Ray Milkey | 287b4ae | 2017-01-19 15:21:17 -0800 | [diff] [blame] | 25 | <version>1.9.0-SNAPSHOT</version> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 26 | </parent> |
xuzhang | 41ad728 | 2015-08-07 15:07:34 +0800 | [diff] [blame] | 27 | |
| 28 | |
samueljcc | da82eb8 | 2015-10-07 16:29:52 -0700 | [diff] [blame] | 29 | <artifactId>onos-app-vtn-web</artifactId> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | <properties> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 32 | <web.context>/onos/vtn</web.context> |
| 33 | </properties> |
xuzhang | 41ad728 | 2015-08-07 15:07:34 +0800 | [diff] [blame] | 34 | |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 38 | <artifactId>javax.ws.rs-api</artifactId> |
| 39 | <version>2.0.1</version> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onosproject</groupId> |
samueljcc | da82eb8 | 2015-10-07 16:29:52 -0700 | [diff] [blame] | 43 | <artifactId>onos-app-vtn-rsc</artifactId> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 44 | <version>${project.version}</version> |
| 45 | </dependency> |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-rest</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <classifier>tests</classifier> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 53 | </dependencies> |
| 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.felix</groupId> |
| 58 | <artifactId>maven-bundle-plugin</artifactId> |
| 59 | <extensions>true</extensions> |
| 60 | <configuration> |
| 61 | <instructions> |
| 62 | <_wab>src/main/webapp/</_wab> |
| 63 | <Bundle-SymbolicName> |
| 64 | ${project.groupId}.${project.artifactId} |
| 65 | </Bundle-SymbolicName> |
| 66 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 67 | *,org.glassfish.jersey.servlet |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 68 | </Import-Package> |
| 69 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 70 | </instructions> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
xuzhang | 41ad728 | 2015-08-07 15:07:34 +0800 | [diff] [blame] | 75 | |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 76 | </project> |