Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 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 | --><project xmlns="http://maven.apache.org/POM/4.0.0" |
| 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
| 22 | <artifactId>onos-dhcp</artifactId> |
| 23 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | 1b9ddb2 | 2018-02-20 23:56:58 +0000 | [diff] [blame^] | 24 | <version>1.11.2-rc6</version> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-app-dhcp</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <url>http://onosproject.org</url> |
| 31 | |
| 32 | <description>DHCP Server application</description> |
| 33 | |
| 34 | <properties> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 35 | <web.context>/onos/dhcp</web.context> |
| 36 | <api.version>1.0.0</api.version> |
| 37 | <api.title>DHCP Server REST API</api.title> |
| 38 | <api.description> |
| 39 | APIs for interacting with the DHCP Server application. |
| 40 | </api.description> |
| 41 | <api.package>org.onosproject.dhcp.rest</api.package> |
| 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-app-dhcp-api</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>org.osgi.compendium</artifactId> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-cli</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.apache.karaf.shell</groupId> |
| 63 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 64 | <scope>compile</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
| 69 | <artifactId>onlab-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onos-core-serializers</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-incubator-api</artifactId> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onos-api</artifactId> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 85 | <classifier>tests</classifier> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onos-rest</artifactId> |
| 92 | <version>${project.version}</version> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.onosproject</groupId> |
| 96 | <artifactId>onlab-rest</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 101 | <artifactId>javax.ws.rs-api</artifactId> |
| 102 | <version>2.0.1</version> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 105 | <groupId>org.glassfish.jersey.containers</groupId> |
| 106 | <artifactId>jersey-container-servlet</artifactId> |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>com.fasterxml.jackson.core</groupId> |
| 110 | <artifactId>jackson-databind</artifactId> |
| 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
| 114 | <groupId>com.fasterxml.jackson.core</groupId> |
| 115 | <artifactId>jackson-annotations</artifactId> |
| 116 | </dependency> |
| 117 | </dependencies> |
| 118 | |
| 119 | <build> |
| 120 | <plugins> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.felix</groupId> |
| 123 | <artifactId>maven-bundle-plugin</artifactId> |
| 124 | <extensions>true</extensions> |
| 125 | <configuration> |
| 126 | <instructions> |
| 127 | <_wab>src/main/webapp/</_wab> |
| 128 | <Include-Resource> |
| 129 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 130 | {maven-resources} |
| 131 | </Include-Resource> |
| 132 | <Bundle-SymbolicName> |
| 133 | ${project.groupId}.${project.artifactId} |
| 134 | </Bundle-SymbolicName> |
| 135 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 136 | *,org.glassfish.jersey.servlet |
Thomas Vachuska | da952d8 | 2015-10-28 20:19:49 -0700 | [diff] [blame] | 137 | </Import-Package> |
| 138 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 139 | </instructions> |
| 140 | </configuration> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | </build> |
| 144 | |
| 145 | </project> |