blob: a4742fba498a1bf990dba0b6627b35922e76d839 [file] [log] [blame]
Jian Li75642312017-01-19 14:23:05 -08001<?xml version="1.0"?>
2<!--
3~ Copyright 2017-present Open Networking Laboratory
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
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-mapping</artifactId>
Ray Milkey57b51012017-02-13 11:06:55 -080025 <version>1.10-SNAPSHOT</version>
Jian Li75642312017-01-19 14:23:05 -080026 </parent>
27
28
29 <artifactId>onos-app-mapping-web</artifactId>
30 <packaging>bundle</packaging>
31 <properties>
32 <web.context>/onos/v1/mm</web.context>
33 <api.version>1.0.0</api.version>
34 <api.title>ONOS LISP Mapping Management Application REST API</api.title>
35 <api.description>
36 APIs for interacting with the LISP Mapping Management application.
37 </api.description>
38 <api.package>org.onosproject.mapping.web</api.package>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-mapping-api</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>javax.ws.rs</groupId>
49 <artifactId>javax.ws.rs-api</artifactId>
50 <version>2.0.1</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-incubator-api</artifactId>
55 <type>jar</type>
56 </dependency>
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-osgi</artifactId>
60 <classifier>tests</classifier>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.glassfish.jersey.core</groupId>
65 <artifactId>jersey-client</artifactId>
66 <type>jar</type>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-core-common</artifactId>
71 <scope>test</scope>
72 <type>jar</type>
73 </dependency>
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-rest</artifactId>
77 <version>${project.version}</version>
78 <scope>test</scope>
79 <type>jar</type>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-rest</artifactId>
85 <version>${project.version}</version>
86 <classifier>tests</classifier>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.glassfish.jersey.test-framework</groupId>
92 <artifactId>jersey-test-framework-core</artifactId>
93 <scope>test</scope>
94 </dependency>
95
96 </dependencies>
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>