blob: 3c50525eb8fa596bed209210234417c4e759cb6f [file] [log] [blame]
jcc3d4e14a2015-04-21 11:32:05 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
ONOS Jenkins User4bf9e3a2017-12-12 18:46:22 +000024 <version>1.13.0-SNAPSHOT</version>
jcc3d4e14a2015-04-21 11:32:05 +080025 </parent>
26
27 <artifactId>onos-app-segmentrouting</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>Segment routing application</description>
31
32 <properties>
sangho1e575652015-05-14 00:39:53 -070033 <web.context>/onos/segmentrouting</web.context>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070034 <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>
jcc3d4e14a2015-04-21 11:32:05 +080040 </properties>
41
sangho1e575652015-05-14 00:39:53 -070042 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-cli</artifactId>
46 <version>${project.version}</version>
47 </dependency>
Charles Chand55e84d2016-03-30 17:54:24 -070048 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-core-serializers</artifactId>
51 <version>${project.version}</version>
52 </dependency>
sangho1e575652015-05-14 00:39:53 -070053 <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 Li9d616492016-03-09 10:52:49 -080069 <artifactId>javax.ws.rs-api</artifactId>
sangho1e575652015-05-14 00:39:53 -070070 </dependency>
71 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080072 <groupId>org.glassfish.jersey.containers</groupId>
73 <artifactId>jersey-container-servlet</artifactId>
sangho1e575652015-05-14 00:39:53 -070074 </dependency>
75 <dependency>
76 <groupId>com.fasterxml.jackson.core</groupId>
77 <artifactId>jackson-databind</artifactId>
78 </dependency>
sangho1e575652015-05-14 00:39:53 -070079 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-annotations</artifactId>
82 </dependency>
sangho1e575652015-05-14 00:39:53 -070083 <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 Chan531a78b2015-12-01 10:00:51 -080091 <dependency>
92 <groupId>org.onosproject</groupId>
93 <artifactId>onlab-junit</artifactId>
94 <scope>test</scope>
95 </dependency>
Charles Chan5270ed02016-01-30 23:22:37 -080096 <dependency>
97 <groupId>org.onosproject</groupId>
98 <artifactId>onos-api</artifactId>
Charles Chan5270ed02016-01-30 23:22:37 -080099 <scope>test</scope>
100 <classifier>tests</classifier>
101 </dependency>
Yuta HIGUCHId919d9b2017-06-26 11:10:20 -0700102 <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 Milkey69ec8712017-08-08 13:00:43 -0700109 <dependency>
110 <groupId>org.onosproject</groupId>
Yuta HIGUCHI1e534c32017-08-10 16:07:21 -0700111 <artifactId>onos-apps-route-service-api</artifactId>
Ray Milkey69ec8712017-08-08 13:00:43 -0700112 <version>${project.version}</version>
113 </dependency>
Yuta HIGUCHI50a02a02017-08-22 10:09:12 -0700114 <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>
sangho1e575652015-05-14 00:39:53 -0700121 </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 Vachuska0fa2aa12015-08-18 12:53:04 -0700132 <Include-Resource>
133 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
134 {maven-resources}
135 </Include-Resource>
sangho1e575652015-05-14 00:39:53 -0700136 <Bundle-SymbolicName>
137 ${project.groupId}.${project.artifactId}
138 </Bundle-SymbolicName>
139 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700140 *,org.glassfish.jersey.servlet
sangho1e575652015-05-14 00:39:53 -0700141 </Import-Package>
142 <Web-ContextPath>${web.context}</Web-ContextPath>
143 </instructions>
144 </configuration>
145 </plugin>
146 </plugins>
147 </build>
148
jcc3d4e14a2015-04-21 11:32:05 +0800149</project>