blob: 50149a0d0587c2b8a99640c0a87f91eb3a748570 [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>
Ray Milkey64677e92017-08-01 10:48:08 -070024 <version>1.11.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>
70 <version>2.0.1</version>
sangho1e575652015-05-14 00:39:53 -070071 </dependency>
72 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080073 <groupId>org.glassfish.jersey.containers</groupId>
74 <artifactId>jersey-container-servlet</artifactId>
sangho1e575652015-05-14 00:39:53 -070075 </dependency>
76 <dependency>
77 <groupId>com.fasterxml.jackson.core</groupId>
78 <artifactId>jackson-databind</artifactId>
79 </dependency>
sangho1e575652015-05-14 00:39:53 -070080 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-annotations</artifactId>
83 </dependency>
sangho1e575652015-05-14 00:39:53 -070084 <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 Chan531a78b2015-12-01 10:00:51 -080092 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onlab-junit</artifactId>
95 <scope>test</scope>
96 </dependency>
Charles Chan5270ed02016-01-30 23:22:37 -080097 <dependency>
98 <groupId>org.onosproject</groupId>
99 <artifactId>onos-api</artifactId>
Charles Chan5270ed02016-01-30 23:22:37 -0800100 <scope>test</scope>
101 <classifier>tests</classifier>
102 </dependency>
Yuta HIGUCHId919d9b2017-06-26 11:10:20 -0700103 <dependency>
104 <groupId>org.onosproject</groupId>
105 <artifactId>onos-incubator-api</artifactId>
106 <version>${project.version}</version>
107 <scope>test</scope>
108 <classifier>tests</classifier>
109 </dependency>
Ray Milkey69ec8712017-08-08 13:00:43 -0700110 <dependency>
111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-app-route-service-api</artifactId>
113 <version>${project.version}</version>
114 </dependency>
sangho1e575652015-05-14 00:39:53 -0700115 </dependencies>
116
117 <build>
118 <plugins>
119 <plugin>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>maven-bundle-plugin</artifactId>
122 <extensions>true</extensions>
123 <configuration>
124 <instructions>
125 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700126 <Include-Resource>
127 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
128 {maven-resources}
129 </Include-Resource>
sangho1e575652015-05-14 00:39:53 -0700130 <Bundle-SymbolicName>
131 ${project.groupId}.${project.artifactId}
132 </Bundle-SymbolicName>
133 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700134 *,org.glassfish.jersey.servlet
sangho1e575652015-05-14 00:39:53 -0700135 </Import-Package>
136 <Web-ContextPath>${web.context}</Web-ContextPath>
137 </instructions>
138 </configuration>
139 </plugin>
140 </plugins>
141 </build>
142
jcc3d4e14a2015-04-21 11:32:05 +0800143</project>