blob: 11e7ad45862dfa973f9c2a54bc00e5a8dec31dda [file] [log] [blame]
Henry Yue20926e2016-08-25 22:58:02 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Henry Yue20926e2016-08-25 22:58:02 -04004 ~
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 Milkey4867af22018-08-10 16:52:28 -070025 <version>1.14.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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070045 <artifactId>onos-apps-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>
Henry Yue20926e2016-08-25 22:58:02 -040061 </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 HIGUCHI78472272018-05-03 17:08:16 -070084 <artifactId>onos-apps-dhcp-api</artifactId>
Henry Yue20926e2016-08-25 22:58:02 -040085 <version>${project.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>org.glassfish.jersey.core</groupId>
89 <artifactId>jersey-client</artifactId>
Henry Yue20926e2016-08-25 22:58:02 -040090 </dependency>
91 <dependency>
92 <groupId>org.glassfish.jersey.core</groupId>
93 <artifactId>jersey-common</artifactId>
Henry Yue20926e2016-08-25 22:58:02 -040094 </dependency>
95 <dependency>
Ray Milkeyd062f362018-01-29 09:55:10 -080096 <groupId>org.glassfish.jersey.test-framework</groupId>
97 <artifactId>jersey-test-framework-core</artifactId>
Ray Milkeyd062f362018-01-29 09:55:10 -080098 <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 Milkeyd062f362018-01-29 09:55:10 -0800103 <scope>test</scope>
104 </dependency>
105 <dependency>
Henry Yue20926e2016-08-25 22:58:02 -0400106 <groupId>org.onosproject</groupId>
107 <artifactId>onlab-misc</artifactId>
108 <version>${project.version}</version>
109 </dependency>
Yuta HIGUCHIf1653a72018-01-31 14:24:25 -0800110 <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 Milkeyd062f362018-01-29 09:55:10 -0800119 <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 Lic5cd6622018-03-08 12:08:56 +0900132 <dependency>
Jian Lic5cd6622018-03-08 12:08:56 +0900133 <groupId>org.glassfish.jersey.inject</groupId>
134 <artifactId>jersey-hk2</artifactId>
135 <scope>test</scope>
136 </dependency>
Henry Yue20926e2016-08-25 22:58:02 -0400137 </dependencies>
138
139 <build>
140 <plugins>
141 <plugin>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>maven-bundle-plugin</artifactId>
144 <extensions>true</extensions>
145 <configuration>
146 <instructions>
147 <_wab>src/main/webapp/</_wab>
148 <Include-Resource>
149 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
150 {maven-resources}
151 </Include-Resource>
152 <Bundle-SymbolicName>
153 ${project.groupId}.${project.artifactId}
154 </Bundle-SymbolicName>
155 <Import-Package>
156 *,org.glassfish.jersey.servlet
157 </Import-Package>
158 <Web-ContextPath>${web.context}</Web-ContextPath>
159 </instructions>
160 </configuration>
161 </plugin>
162 </plugins>
163 </build>
164
165
166</project>