blob: 83447dad954e2e2930b16eb34b7d7e42cdf5a35f [file] [log] [blame]
Andrea Campanella545edb42018-03-20 16:37:29 -07001<?xml version="1.0"?>
2<!--
3~ Copyright 2018-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-->
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 HIGUCHId6ab1002018-03-25 19:31:17 -070024 <artifactId>onos-apps-mcast</artifactId>
Ray Milkey78ce4002018-08-10 11:16:44 -070025 <version>1.14.0-b1</version>
Andrea Campanella545edb42018-03-20 16:37:29 -070026 </parent>
27
28
Yuta HIGUCHId6ab1002018-03-25 19:31:17 -070029 <artifactId>onos-apps-mcast-web</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070030 <packaging>bundle</packaging>
31 <properties>
32 <web.context>/onos/v1/mcast</web.context>
33 <api.version>1.0.0</api.version>
34 <api.title>ONOS Multicast Application REST API</api.title>
35 <api.description>
36 APIs for interacting with the Multicast application.
37 </api.description>
38 <api.package>org.onosproject.mcast.web</api.package>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>javax.ws.rs</groupId>
44 <artifactId>javax.ws.rs-api</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070045 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-incubator-api</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070049 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
Ray Milkeyb789b8c2018-04-06 09:34:20 -070052 <artifactId>onos-apps-mcast-api</artifactId>
Andrea Campanella644a8a62018-03-21 19:08:21 -070053 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onosproject</groupId>
Andrea Campanella545edb42018-03-20 16:37:29 -070057 <artifactId>onlab-osgi</artifactId>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.glassfish.jersey.core</groupId>
63 <artifactId>jersey-client</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070064 </dependency>
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-core-common</artifactId>
68 <scope>test</scope>
Andrea Campanella545edb42018-03-20 16:37:29 -070069 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-rest</artifactId>
73 <version>${project.version}</version>
74 <scope>test</scope>
Andrea Campanella545edb42018-03-20 16:37:29 -070075 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-rest</artifactId>
80 <version>${project.version}</version>
81 <classifier>tests</classifier>
82 <scope>test</scope>
83 </dependency>
84
85 <dependency>
86 <groupId>org.glassfish.jersey.test-framework</groupId>
87 <artifactId>jersey-test-framework-core</artifactId>
88 <scope>test</scope>
89 </dependency>
90
91 </dependencies>
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <extensions>true</extensions>
98 <configuration>
99 <instructions>
100 <_wab>src/main/webapp/</_wab>
101 <Include-Resource>
102 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
103 {maven-resources}
104 </Include-Resource>
105 <Bundle-SymbolicName>
106 ${project.groupId}.${project.artifactId}
107 </Bundle-SymbolicName>
108 <Import-Package>
109 *,org.glassfish.jersey.servlet
110 </Import-Package>
111 <Web-ContextPath>${web.context}</Web-ContextPath>
112 </instructions>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
117
118</project>