blob: 6e1f47583e8da65a53141507c2d04477118ad0da [file] [log] [blame]
Andreas Pantelopoulos85001182018-02-24 16:35:59 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
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 --><project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-apps-segmentrouting</artifactId>
Ray Milkey78ce4002018-08-10 11:16:44 -070024 <version>1.14.0-b1</version>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080025 </parent>
26
27 <artifactId>onos-apps-segmentrouting-web</artifactId>
28 <packaging>bundle</packaging>
29
30 <url>http://onosproject.org</url>
31
Charles Chanc7b3c452018-06-19 20:31:57 -070032 <description>Segment Routing REST API</description>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080033
34 <properties>
35 <web.context>/onos/segmentrouting</web.context>
36 <api.version>1.0</api.version>
Charles Chanc7b3c452018-06-19 20:31:57 -070037 <api.title>Segment Routing REST APIr</api.title>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080038 <api.description>
39 REST API for Segment Routing Application
40 </api.description>
41 <api.package>org.onosproject.segmentrouting.web</api.package>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-apps-segmentrouting-app</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.apache.karaf.shell</groupId>
53 <artifactId>org.apache.karaf.shell.console</artifactId>
54 <scope>compile</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-junit</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-core-serializers</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-rest</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-rest</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>javax.ws.rs</groupId>
80 <artifactId>javax.ws.rs-api</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.glassfish.jersey.containers</groupId>
84 <artifactId>jersey-container-servlet</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>com.fasterxml.jackson.core</groupId>
88 <artifactId>jackson-databind</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-annotations</artifactId>
94 </dependency>
95 </dependencies>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-bundle-plugin</artifactId>
102 <extensions>true</extensions>
103 <configuration>
104 <instructions>
105 <_wab>src/main/webapp/</_wab>
106 <Include-Resource>
107 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
108 {maven-resources}
109 </Include-Resource>
110 <Bundle-SymbolicName>
111 ${project.groupId}.${project.artifactId}
112 </Bundle-SymbolicName>
113 <Import-Package>
114 *,org.glassfish.jersey.servlet
115 </Import-Package>
116 <Web-ContextPath>${web.context}</Web-ContextPath>
117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122
123</project>