blob: c87ebb500817cdfa93f046b2a0cfdb3cc5b9b10a [file] [log] [blame]
Hyunsun Moon7ad92202016-04-20 10:36:02 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor0a4e6742016-09-15 23:03:10 -07003 ~ Copyright 2016-present Open Networking Laboratory
Hyunsun Moon7ad92202016-04-20 10:36:02 -07004 ~
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <artifactId>onos-apps</artifactId>
24 <groupId>org.onosproject</groupId>
Ray Milkey54a78512017-02-13 11:13:52 -080025 <version>1.10.0-SNAPSHOT</version>
Hyunsun Moon7ad92202016-04-20 10:36:02 -070026 </parent>
27
28 <artifactId>onos-app-xos-client</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>XOS client service</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.xosclient</onos.app.name>
35 <onos.app.title>XOS Client App</onos.app.title>
36 <onos.app.category>Utility</onos.app.category>
37 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readme>XOS Client Application.</onos.app.readme>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
Hyunsun Moon4c396632016-05-13 04:17:53 -070046 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-misc</artifactId>
Hyunsun Moon4c396632016-05-13 04:17:53 -070049 </dependency>
Hyunsun Moone0f3e282016-05-13 18:58:35 -070050 <dependency>
Hyunsun Moon2e39d3b2016-06-22 14:41:48 -070051 <groupId>org.glassfish.jersey.core</groupId>
52 <artifactId>jersey-client</artifactId>
53 </dependency>
54 <dependency>
Hyunsun Moone0f3e282016-05-13 18:58:35 -070055 <groupId>org.pacesys</groupId>
56 <artifactId>openstack4j-core</artifactId>
57 <version>2.11</version>
58 </dependency>
59 <dependency>
60 <groupId>org.pacesys.openstack4j.connectors</groupId>
61 <artifactId>openstack4j-http-connector</artifactId>
62 <version>2.11</version>
63 </dependency>
64 <dependency>
65 <groupId>org.pacesys.openstack4j.connectors</groupId>
66 <artifactId>openstack4j-httpclient</artifactId>
67 <version>2.11</version>
68 </dependency>
Hyunsun Moon7ad92202016-04-20 10:36:02 -070069 </dependencies>
70
Hyunsun Moone0f3e282016-05-13 18:58:35 -070071 <build>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
76 <extensions>true</extensions>
77 <configuration>
78 <instructions>
79 <Import-Package>
80 !org.apache.http.*,
81 !com.fasterxml.jackson.dataformat.*,
82 !javax.annotation,*
83 </Import-Package>
84 <Embed-Dependency>
85 openstack4j-core,
86 openstack4j-http-connector,
87 openstack4j-httpclient
88 </Embed-Dependency>
89 </instructions>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94
Hyunsun Moon7ad92202016-04-20 10:36:02 -070095</project>