jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [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 | <parent> |
| 22 | <artifactId>onos-apps</artifactId> |
| 23 | <groupId>org.onosproject</groupId> |
Ray Milkey | 08b03a9 | 2017-05-15 11:26:33 -0700 | [diff] [blame] | 24 | <version>1.11.0-SNAPSHOT</version> |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-app-segmentrouting</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>Segment routing application</description> |
| 31 | |
| 32 | <properties> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 33 | <web.context>/onos/segmentrouting</web.context> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 34 | <api.version>1.0.0</api.version> |
| 35 | <api.title>ONOS Segment Routing REST API</api.title> |
| 36 | <api.description> |
| 37 | APIs for interacting with the Segment Routing application. |
| 38 | </api.description> |
| 39 | <api.package>org.onosproject.segmentrouting.web</api.package> |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 40 | </properties> |
| 41 | |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>org.onosproject</groupId> |
| 45 | <artifactId>onos-cli</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
Charles Chan | d55e84d | 2016-03-30 17:54:24 -0700 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-core-serializers</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.apache.karaf.shell</groupId> |
| 55 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-rest</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
| 64 | <artifactId>onlab-rest</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 69 | <artifactId>javax.ws.rs-api</artifactId> |
| 70 | <version>2.0.1</version> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 73 | <groupId>org.glassfish.jersey.containers</groupId> |
| 74 | <artifactId>jersey-container-servlet</artifactId> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>com.fasterxml.jackson.core</groupId> |
| 78 | <artifactId>jackson-databind</artifactId> |
| 79 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>com.fasterxml.jackson.core</groupId> |
| 82 | <artifactId>jackson-annotations</artifactId> |
| 83 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 84 | <dependency> |
| 85 | <groupId>org.osgi</groupId> |
| 86 | <artifactId>org.osgi.compendium</artifactId> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.osgi</groupId> |
| 90 | <artifactId>org.osgi.core</artifactId> |
| 91 | </dependency> |
Charles Chan | 531a78b | 2015-12-01 10:00:51 -0800 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onlab-junit</artifactId> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
Charles Chan | 5270ed0 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.onosproject</groupId> |
| 99 | <artifactId>onos-api</artifactId> |
Charles Chan | 5270ed0 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 100 | <scope>test</scope> |
| 101 | <classifier>tests</classifier> |
| 102 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 103 | </dependencies> |
| 104 | |
| 105 | <build> |
| 106 | <plugins> |
| 107 | <plugin> |
| 108 | <groupId>org.apache.felix</groupId> |
| 109 | <artifactId>maven-bundle-plugin</artifactId> |
| 110 | <extensions>true</extensions> |
| 111 | <configuration> |
| 112 | <instructions> |
| 113 | <_wab>src/main/webapp/</_wab> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 114 | <Include-Resource> |
| 115 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 116 | {maven-resources} |
| 117 | </Include-Resource> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 118 | <Bundle-SymbolicName> |
| 119 | ${project.groupId}.${project.artifactId} |
| 120 | </Bundle-SymbolicName> |
| 121 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 122 | *,org.glassfish.jersey.servlet |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 123 | </Import-Package> |
| 124 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 125 | </instructions> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | </plugins> |
| 129 | </build> |
| 130 | |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 131 | </project> |