blob: d1ef31c7ced42e1a3e83d7456826f2b09543d9b9 [file] [log] [blame]
Henry Yue20926e2016-08-25 22:58:02 -04001<?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 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 Milkey64313cb2017-07-20 15:46:52 -070025 <version>1.11.0-SNAPSHOT</version>
Henry Yue20926e2016-08-25 22:58:02 -040026 <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>
Henry Yu3a91b132017-04-26 16:00:55 -040045 <artifactId>onos-app-restconf-api</artifactId>
Henry Yue20926e2016-08-25 22:58:02 -040046 <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>
61 <version>2.0.1</version>
62 </dependency>
63 <dependency>
64 <groupId>org.glassfish.jersey.containers</groupId>
65 <artifactId>jersey-container-servlet</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-databind</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.fasterxml.jackson.core</groupId>
73 <artifactId>jackson-annotations</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.osgi</groupId>
77 <artifactId>org.osgi.compendium</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.osgi</groupId>
81 <artifactId>org.osgi.core</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onos-app-dhcp-api</artifactId>
86 <version>${project.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.glassfish.jersey.core</groupId>
90 <artifactId>jersey-client</artifactId>
Jian Li112890b2017-04-25 22:27:49 +090091 <version>2.25.1</version>
Henry Yue20926e2016-08-25 22:58:02 -040092 </dependency>
93 <dependency>
94 <groupId>org.glassfish.jersey.core</groupId>
95 <artifactId>jersey-common</artifactId>
Jian Li112890b2017-04-25 22:27:49 +090096 <version>2.25.1</version>
Henry Yue20926e2016-08-25 22:58:02 -040097 </dependency>
98 <dependency>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onlab-misc</artifactId>
101 <version>${project.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>org.apache.felix.scr.annotations</artifactId>
106 <version>1.9.8</version>
107 </dependency>
108 <dependency>
109 <groupId>javax.servlet</groupId>
110 <artifactId>servlet-api</artifactId>
111 <version>2.5</version>
112 </dependency>
113 </dependencies>
114
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>maven-bundle-plugin</artifactId>
120 <extensions>true</extensions>
121 <configuration>
122 <instructions>
123 <_wab>src/main/webapp/</_wab>
124 <Include-Resource>
125 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
126 {maven-resources}
127 </Include-Resource>
128 <Bundle-SymbolicName>
129 ${project.groupId}.${project.artifactId}
130 </Bundle-SymbolicName>
131 <Import-Package>
132 *,org.glassfish.jersey.servlet
133 </Import-Package>
134 <Web-ContextPath>${web.context}</Web-ContextPath>
135 </instructions>
136 </configuration>
137 </plugin>
138 </plugins>
139 </build>
140
141
142</project>