blob: 367f1ad60db6f684b6787c69b309237004339948 [file] [log] [blame]
anjiaqi123456782a3c5a2016-10-11 15:57:50 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-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
23 <parent>
24 <groupId>org.onosproject</groupId>
25 <artifactId>onos-app-nemo</artifactId>
26 <version>1.7.0-SNAPSHOT</version>
27 </parent>
28
29 <artifactId>onos-app-nemo-web</artifactId>
30 <packaging>bundle</packaging>
31
32 <properties>
33 <web.context>/onos/nemo</web.context>
34 </properties>
35
36 <dependencies>
37 <dependency>
38 <groupId>javax.ws.rs</groupId>
39 <artifactId>javax.ws.rs-api</artifactId>
40 <version>2.0.1</version>
41 </dependency>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-rest</artifactId>
45 <version>${onos.version}</version>
46 <classifier>tests</classifier>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-app-nemo-engine</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 </dependencies>
55
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
61 <extensions>true</extensions>
62 <configuration>
63 <instructions>
64 <_wab>src/main/webapp/</_wab>
65 <Bundle-SymbolicName>
66 ${project.groupId}.${project.artifactId}
67 </Bundle-SymbolicName>
68 <Import-Package>
69 *,org.glassfish.jersey.servlet
70 </Import-Package>
71 <Web-ContextPath>${web.context}</Web-ContextPath>
72 </instructions>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77</project>