blob: 461846555d02fed3ab961e6e3357cb335563873b [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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070024 <artifactId>onos-apps-mappingmanagement</artifactId>
ONOS Jenkins User03e55212018-08-14 22:13:58 +000025 <version>1.14.0-SNAPSHOT</version>
Jian Li75642312017-01-19 14:23:05 -080026 </parent>
27
28
Yuta HIGUCHI78472272018-05-03 17:08:16 -070029 <artifactId>onos-apps-mappingmanagement-web</artifactId>
Jian Li75642312017-01-19 14:23:05 -080030 <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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070044 <artifactId>onos-apps-mappingmanagement-api</artifactId>
Jian Li75642312017-01-19 14:23:05 -080045 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>javax.ws.rs</groupId>
49 <artifactId>javax.ws.rs-api</artifactId>
Jian Li75642312017-01-19 14:23:05 -080050 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-incubator-api</artifactId>
54 <type>jar</type>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
59 <classifier>tests</classifier>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.glassfish.jersey.core</groupId>
64 <artifactId>jersey-client</artifactId>
65 <type>jar</type>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-core-common</artifactId>
70 <scope>test</scope>
71 <type>jar</type>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-rest</artifactId>
76 <version>${project.version}</version>
77 <scope>test</scope>
78 <type>jar</type>
79 </dependency>
Jian Li75642312017-01-19 14:23:05 -080080 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-rest</artifactId>
83 <version>${project.version}</version>
84 <classifier>tests</classifier>
85 <scope>test</scope>
86 </dependency>
Jian Li75642312017-01-19 14:23:05 -080087 <dependency>
Jian Lic5cd6622018-03-08 12:08:56 +090088 <groupId>org.glassfish.jersey.core</groupId>
89 <artifactId>jersey-common</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.glassfish.jersey.inject</groupId>
94 <artifactId>jersey-hk2</artifactId>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
Jian Li75642312017-01-19 14:23:05 -080098 <groupId>org.glassfish.jersey.test-framework</groupId>
99 <artifactId>jersey-test-framework-core</artifactId>
100 <scope>test</scope>
101 </dependency>
Jian Lic134c7a2017-04-25 12:51:28 +0900102 <dependency>
103 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
104 <artifactId>jersey-test-framework-provider-jetty</artifactId>
105 <scope>test</scope>
106 </dependency>
Jian Li75642312017-01-19 14:23:05 -0800107
108 </dependencies>
109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <extensions>true</extensions>
115 <configuration>
116 <instructions>
117 <_wab>src/main/webapp/</_wab>
118 <Include-Resource>
119 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
120 {maven-resources}
121 </Include-Resource>
122 <Bundle-SymbolicName>
123 ${project.groupId}.${project.artifactId}
124 </Bundle-SymbolicName>
125 <Import-Package>
126 *,org.glassfish.jersey.servlet
127 </Import-Package>
128 <Web-ContextPath>${web.context}</Web-ContextPath>
129 </instructions>
130 </configuration>
131 </plugin>
132 </plugins>
133 </build>
134
135</project>