jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 3 | ~ Copyright 2014-2016 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> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 24 | <version>1.5.0-SNAPSHOT</version> |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-segmentrouting</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>Segment routing application</description> |
| 32 | |
| 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.segmentrouting</onos.app.name> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 35 | <onos.app.category>default</onos.app.category> |
| 36 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 37 | <onos.app.readme>Segment routing application.</onos.app.readme> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 38 | <web.context>/onos/segmentrouting</web.context> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 39 | <api.version>1.0.0</api.version> |
| 40 | <api.title>ONOS Segment Routing REST API</api.title> |
| 41 | <api.description> |
| 42 | APIs for interacting with the Segment Routing application. |
| 43 | </api.description> |
| 44 | <api.package>org.onosproject.segmentrouting.web</api.package> |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 45 | </properties> |
| 46 | |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-cli</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.apache.karaf.shell</groupId> |
| 56 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onos-rest</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onlab-rest</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>javax.ws.rs</groupId> |
| 70 | <artifactId>jsr311-api</artifactId> |
| 71 | <version>1.1.1</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>com.sun.jersey</groupId> |
| 75 | <artifactId>jersey-servlet</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>com.fasterxml.jackson.core</groupId> |
| 79 | <artifactId>jackson-databind</artifactId> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>com.fasterxml.jackson.core</groupId> |
| 84 | <artifactId>jackson-annotations</artifactId> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.osgi</groupId> |
| 89 | <artifactId>org.osgi.compendium</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.osgi</groupId> |
| 93 | <artifactId>org.osgi.core</artifactId> |
| 94 | </dependency> |
Charles Chan | 531a78b | 2015-12-01 10:00:51 -0800 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.onosproject</groupId> |
| 97 | <artifactId>onlab-junit</artifactId> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 100 | </dependencies> |
| 101 | |
| 102 | <build> |
| 103 | <plugins> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.felix</groupId> |
| 106 | <artifactId>maven-bundle-plugin</artifactId> |
| 107 | <extensions>true</extensions> |
| 108 | <configuration> |
| 109 | <instructions> |
| 110 | <_wab>src/main/webapp/</_wab> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 111 | <Include-Resource> |
| 112 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 113 | {maven-resources} |
| 114 | </Include-Resource> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 115 | <Bundle-SymbolicName> |
| 116 | ${project.groupId}.${project.artifactId} |
| 117 | </Bundle-SymbolicName> |
| 118 | <Import-Package> |
| 119 | org.slf4j, |
| 120 | org.osgi.framework, |
| 121 | javax.ws.rs, |
| 122 | javax.ws.rs.core, |
| 123 | com.sun.jersey.api.core, |
| 124 | com.sun.jersey.spi.container.servlet, |
| 125 | com.sun.jersey.server.impl.container.servlet, |
| 126 | com.fasterxml.jackson.databind, |
| 127 | com.fasterxml.jackson.databind.node, |
| 128 | com.fasterxml.jackson.core, |
| 129 | org.apache.karaf.shell.commands, |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 130 | com.google.common.*, |
| 131 | org.onlab.packet.*, |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 132 | org.onosproject.*, |
| 133 | org.onlab.util.*, |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 134 | </Import-Package> |
| 135 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 136 | </instructions> |
| 137 | </configuration> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </build> |
| 141 | |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 142 | </project> |