blob: 8188042011c3e16e044a04b9ea1eafd2aba827fd [file] [log] [blame]
Jian Li75642312017-01-19 14:23:05 -08001<?xml version="1.0"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003~ Copyright 2017-present Open Networking Foundation
Jian Li75642312017-01-19 14:23: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
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 Milkeye225d152017-08-16 15:07:05 -070025 <version>1.11.0-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>
Jian Lic134c7a2017-04-25 12:51:28 +090034 <api.title>ONOS Mapping Management Application REST API</api.title>
Jian Li75642312017-01-19 14:23:05 -080035 <api.description>
36 APIs for interacting with the LISP Mapping Management application.
37 </api.description>
Jian Lia23f46d2017-05-02 18:07:31 +090038 <api.package>org.onosproject.mapping.web.api</api.package>
Jian Li75642312017-01-19 14:23:05 -080039 </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>
Jian Li75642312017-01-19 14:23:05 -080081 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-rest</artifactId>
84 <version>${project.version}</version>
85 <classifier>tests</classifier>
86 <scope>test</scope>
87 </dependency>
Jian Li75642312017-01-19 14:23:05 -080088 <dependency>
89 <groupId>org.glassfish.jersey.test-framework</groupId>
90 <artifactId>jersey-test-framework-core</artifactId>
91 <scope>test</scope>
92 </dependency>
Jian Lic134c7a2017-04-25 12:51:28 +090093 <dependency>
94 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
95 <artifactId>jersey-test-framework-provider-jetty</artifactId>
96 <scope>test</scope>
97 </dependency>
Jian Li75642312017-01-19 14:23:05 -080098
99 </dependencies>
100 <build>
101 <plugins>
102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-bundle-plugin</artifactId>
105 <extensions>true</extensions>
106 <configuration>
107 <instructions>
108 <_wab>src/main/webapp/</_wab>
109 <Include-Resource>
110 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
111 {maven-resources}
112 </Include-Resource>
113 <Bundle-SymbolicName>
114 ${project.groupId}.${project.artifactId}
115 </Bundle-SymbolicName>
116 <Import-Package>
117 *,org.glassfish.jersey.servlet
118 </Import-Package>
119 <Web-ContextPath>${web.context}</Web-ContextPath>
120 </instructions>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
125
126</project>