blob: 76d5be572a3d7c1e99792d57b888833136fc5745 [file] [log] [blame]
jcc3d4e14a2015-04-21 11:32:05 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
jcc3d4e14a2015-04-21 11:32:05 +08004 ~
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'Connor955c3162016-03-10 15:27:19 -080024 <version>1.6.0-SNAPSHOT</version>
jcc3d4e14a2015-04-21 11:32:05 +080025 <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>
Simon Huntafae2f72016-03-04 21:18:23 -080035 <onos.app.title>Segment Routing App</onos.app.title>
Jian Lifd46e1d2016-03-08 09:18:53 -080036 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readme>Segment routing application.</onos.app.readme>
sangho1e575652015-05-14 00:39:53 -070039 <web.context>/onos/segmentrouting</web.context>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070040 <api.version>1.0.0</api.version>
41 <api.title>ONOS Segment Routing REST API</api.title>
42 <api.description>
43 APIs for interacting with the Segment Routing application.
44 </api.description>
45 <api.package>org.onosproject.segmentrouting.web</api.package>
jcc3d4e14a2015-04-21 11:32:05 +080046 </properties>
47
sangho1e575652015-05-14 00:39:53 -070048 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-cli</artifactId>
52 <version>${project.version}</version>
53 </dependency>
Charles Chand55e84d2016-03-30 17:54:24 -070054 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-core-serializers</artifactId>
57 <version>${project.version}</version>
58 </dependency>
sangho1e575652015-05-14 00:39:53 -070059 <dependency>
60 <groupId>org.apache.karaf.shell</groupId>
61 <artifactId>org.apache.karaf.shell.console</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-rest</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-rest</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
Jonathan Hartc19f7c12016-04-12 15:39:44 -070074 <groupId>org.onosproject</groupId>
75 <artifactId>onos-core-serializers</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
Charles Chan6ea94fc2016-05-10 17:29:47 -070079 <groupId>org.onosproject</groupId>
80 <artifactId>onos-netcfg-host-provider</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83 <dependency>
sangho1e575652015-05-14 00:39:53 -070084 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080085 <artifactId>javax.ws.rs-api</artifactId>
86 <version>2.0.1</version>
sangho1e575652015-05-14 00:39:53 -070087 </dependency>
88 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080089 <groupId>org.glassfish.jersey.containers</groupId>
90 <artifactId>jersey-container-servlet</artifactId>
sangho1e575652015-05-14 00:39:53 -070091 </dependency>
92 <dependency>
93 <groupId>com.fasterxml.jackson.core</groupId>
94 <artifactId>jackson-databind</artifactId>
95 </dependency>
sangho1e575652015-05-14 00:39:53 -070096 <dependency>
97 <groupId>com.fasterxml.jackson.core</groupId>
98 <artifactId>jackson-annotations</artifactId>
99 </dependency>
sangho1e575652015-05-14 00:39:53 -0700100 <dependency>
101 <groupId>org.osgi</groupId>
102 <artifactId>org.osgi.compendium</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.osgi</groupId>
106 <artifactId>org.osgi.core</artifactId>
107 </dependency>
Charles Chan531a78b2015-12-01 10:00:51 -0800108 <dependency>
109 <groupId>org.onosproject</groupId>
110 <artifactId>onlab-junit</artifactId>
111 <scope>test</scope>
112 </dependency>
Charles Chan5270ed02016-01-30 23:22:37 -0800113 <dependency>
114 <groupId>org.onosproject</groupId>
115 <artifactId>onos-api</artifactId>
116 <version>${project.version}</version>
117 <scope>test</scope>
118 <classifier>tests</classifier>
119 </dependency>
sangho1e575652015-05-14 00:39:53 -0700120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
127 <extensions>true</extensions>
128 <configuration>
129 <instructions>
130 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700131 <Include-Resource>
132 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
133 {maven-resources}
134 </Include-Resource>
sangho1e575652015-05-14 00:39:53 -0700135 <Bundle-SymbolicName>
136 ${project.groupId}.${project.artifactId}
137 </Bundle-SymbolicName>
138 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700139 *,org.glassfish.jersey.servlet
sangho1e575652015-05-14 00:39:53 -0700140 </Import-Package>
141 <Web-ContextPath>${web.context}</Web-ContextPath>
142 </instructions>
143 </configuration>
144 </plugin>
145 </plugins>
146 </build>
147
jcc3d4e14a2015-04-21 11:32:05 +0800148</project>