Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 1 | <?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 HIGUCHI | d6ab100 | 2018-03-25 19:31:17 -0700 | [diff] [blame] | 24 | <artifactId>onos-apps-mcast</artifactId> |
Ray Milkey | bca9049 | 2018-04-13 12:47:31 -0700 | [diff] [blame] | 25 | <version>1.14.0-SNAPSHOT</version> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | |
Yuta HIGUCHI | d6ab100 | 2018-03-25 19:31:17 -0700 | [diff] [blame] | 29 | <artifactId>onos-apps-mcast-web</artifactId> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 30 | <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 Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-incubator-api</artifactId> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
Ray Milkey | b789b8c | 2018-04-06 09:34:20 -0700 | [diff] [blame] | 52 | <artifactId>onos-apps-mcast-api</artifactId> |
Andrea Campanella | 644a8a6 | 2018-03-21 19:08:21 -0700 | [diff] [blame] | 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 57 | <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 Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onos-core-common</artifactId> |
| 68 | <scope>test</scope> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.onosproject</groupId> |
| 72 | <artifactId>onos-rest</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | <scope>test</scope> |
Andrea Campanella | 545edb4 | 2018-03-20 16:37:29 -0700 | [diff] [blame] | 75 | </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> |