Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [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 2016-present Open Networking Foundation |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [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 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-restconf-server</artifactId> |
Ray Milkey | bca9049 | 2018-04-13 12:47:31 -0700 | [diff] [blame] | 25 | <version>1.14.0-SNAPSHOT</version> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-restconf-server-rpp</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <properties> |
| 33 | <web.context>/onos/restconf</web.context> |
| 34 | <api.version>1.0.0</api.version> |
| 35 | <api.title>YANG RESTCONF Protocol Stack</api.title> |
| 36 | <api.description> |
| 37 | RESTCONF Protocol Proxy |
| 38 | </api.description> |
| 39 | <api.package>org.onosproject.protocol.restconf.server.rpp</api.package> |
| 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 45 | <artifactId>onos-apps-restconf-api</artifactId> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-rest</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onlab-rest</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>javax.ws.rs</groupId> |
| 60 | <artifactId>javax.ws.rs-api</artifactId> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.glassfish.jersey.containers</groupId> |
| 64 | <artifactId>jersey-container-servlet</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>com.fasterxml.jackson.core</groupId> |
| 68 | <artifactId>jackson-databind</artifactId> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | <artifactId>jackson-annotations</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.osgi</groupId> |
| 76 | <artifactId>org.osgi.compendium</artifactId> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.osgi</groupId> |
| 80 | <artifactId>org.osgi.core</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 84 | <artifactId>onos-apps-dhcp-api</artifactId> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.glassfish.jersey.core</groupId> |
| 89 | <artifactId>jersey-client</artifactId> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.glassfish.jersey.core</groupId> |
| 93 | <artifactId>jersey-common</artifactId> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
Ray Milkey | d062f36 | 2018-01-29 09:55:10 -0800 | [diff] [blame] | 96 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 97 | <artifactId>jersey-test-framework-core</artifactId> |
Ray Milkey | d062f36 | 2018-01-29 09:55:10 -0800 | [diff] [blame] | 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 102 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
Ray Milkey | d062f36 | 2018-01-29 09:55:10 -0800 | [diff] [blame] | 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 106 | <groupId>org.onosproject</groupId> |
| 107 | <artifactId>onlab-misc</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | </dependency> |
Yuta HIGUCHI | f1653a7 | 2018-01-31 14:24:25 -0800 | [diff] [blame] | 110 | <dependency> |
| 111 | <groupId>org.apache.felix</groupId> |
| 112 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>javax.servlet</groupId> |
| 116 | <artifactId>servlet-api</artifactId> |
| 117 | <version>2.5</version> |
| 118 | </dependency> |
Ray Milkey | d062f36 | 2018-01-29 09:55:10 -0800 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>org.onosproject</groupId> |
| 121 | <artifactId>onos-rest</artifactId> |
| 122 | <version>${project.version}</version> |
| 123 | <classifier>tests</classifier> |
| 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.onosproject</groupId> |
| 128 | <artifactId>onlab-osgi</artifactId> |
| 129 | <classifier>tests</classifier> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
Jian Li | c5cd662 | 2018-03-08 12:08:56 +0900 | [diff] [blame] | 132 | <dependency> |
| 133 | <groupId>org.glassfish.jersey.core</groupId> |
| 134 | <artifactId>jersey-common</artifactId> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.glassfish.jersey.inject</groupId> |
| 139 | <artifactId>jersey-hk2</artifactId> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
Henry Yu | e20926e | 2016-08-25 22:58:02 -0400 | [diff] [blame] | 142 | </dependencies> |
| 143 | |
| 144 | <build> |
| 145 | <plugins> |
| 146 | <plugin> |
| 147 | <groupId>org.apache.felix</groupId> |
| 148 | <artifactId>maven-bundle-plugin</artifactId> |
| 149 | <extensions>true</extensions> |
| 150 | <configuration> |
| 151 | <instructions> |
| 152 | <_wab>src/main/webapp/</_wab> |
| 153 | <Include-Resource> |
| 154 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 155 | {maven-resources} |
| 156 | </Include-Resource> |
| 157 | <Bundle-SymbolicName> |
| 158 | ${project.groupId}.${project.artifactId} |
| 159 | </Bundle-SymbolicName> |
| 160 | <Import-Package> |
| 161 | *,org.glassfish.jersey.servlet |
| 162 | </Import-Package> |
| 163 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 164 | </instructions> |
| 165 | </configuration> |
| 166 | </plugin> |
| 167 | </plugins> |
| 168 | </build> |
| 169 | |
| 170 | |
| 171 | </project> |