jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
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> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 24 | <version>1.13.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> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 72 | <groupId>org.glassfish.jersey.containers</groupId> |
| 73 | <artifactId>jersey-container-servlet</artifactId> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>com.fasterxml.jackson.core</groupId> |
| 77 | <artifactId>jackson-databind</artifactId> |
| 78 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-annotations</artifactId> |
| 82 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.osgi</groupId> |
| 85 | <artifactId>org.osgi.compendium</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.osgi</groupId> |
| 89 | <artifactId>org.osgi.core</artifactId> |
| 90 | </dependency> |
Charles Chan | 531a78b | 2015-12-01 10:00:51 -0800 | [diff] [blame] | 91 | <dependency> |
| 92 | <groupId>org.onosproject</groupId> |
| 93 | <artifactId>onlab-junit</artifactId> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
Charles Chan | 5270ed0 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 96 | <dependency> |
| 97 | <groupId>org.onosproject</groupId> |
| 98 | <artifactId>onos-api</artifactId> |
Charles Chan | 5270ed0 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 99 | <scope>test</scope> |
| 100 | <classifier>tests</classifier> |
| 101 | </dependency> |
Yuta HIGUCHI | d919d9b | 2017-06-26 11:10:20 -0700 | [diff] [blame] | 102 | <dependency> |
| 103 | <groupId>org.onosproject</groupId> |
| 104 | <artifactId>onos-incubator-api</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | <scope>test</scope> |
| 107 | <classifier>tests</classifier> |
| 108 | </dependency> |
Ray Milkey | 69ec871 | 2017-08-08 13:00:43 -0700 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 1e534c3 | 2017-08-10 16:07:21 -0700 | [diff] [blame] | 111 | <artifactId>onos-apps-route-service-api</artifactId> |
Ray Milkey | 69ec871 | 2017-08-08 13:00:43 -0700 | [diff] [blame] | 112 | <version>${project.version}</version> |
| 113 | </dependency> |
Yuta HIGUCHI | 50a02a0 | 2017-08-22 10:09:12 -0700 | [diff] [blame] | 114 | <dependency> |
| 115 | <groupId>org.onosproject</groupId> |
| 116 | <artifactId>onos-apps-route-service-api</artifactId> |
| 117 | <version>${project.version}</version> |
| 118 | <classifier>tests</classifier> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 121 | </dependencies> |
| 122 | |
| 123 | <build> |
| 124 | <plugins> |
| 125 | <plugin> |
| 126 | <groupId>org.apache.felix</groupId> |
| 127 | <artifactId>maven-bundle-plugin</artifactId> |
| 128 | <extensions>true</extensions> |
| 129 | <configuration> |
| 130 | <instructions> |
| 131 | <_wab>src/main/webapp/</_wab> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 132 | <Include-Resource> |
| 133 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 134 | {maven-resources} |
| 135 | </Include-Resource> |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 136 | <Bundle-SymbolicName> |
| 137 | ${project.groupId}.${project.artifactId} |
| 138 | </Bundle-SymbolicName> |
| 139 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 140 | *,org.glassfish.jersey.servlet |
sangho | 1e57565 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 141 | </Import-Package> |
| 142 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 143 | </instructions> |
| 144 | </configuration> |
| 145 | </plugin> |
| 146 | </plugins> |
| 147 | </build> |
| 148 | |
jcc | 3d4e14a | 2015-04-21 11:32:05 +0800 | [diff] [blame] | 149 | </project> |