blob: acb4f7275fc917eb2d0f26f0b0956cf6f24cd815 [file] [log] [blame]
Hyunsun Moon7ad92202016-04-20 10:36:02 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016 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/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>
Brian O'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.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>
49 <version>${project.version}</version>
50 </dependency>
Hyunsun Moone0f3e282016-05-13 18:58:35 -070051 <dependency>
Hyunsun Moon2e39d3b2016-06-22 14:41:48 -070052 <groupId>org.glassfish.jersey.core</groupId>
53 <artifactId>jersey-client</artifactId>
54 </dependency>
55 <dependency>
Hyunsun Moone0f3e282016-05-13 18:58:35 -070056 <groupId>org.pacesys</groupId>
57 <artifactId>openstack4j-core</artifactId>
58 <version>2.11</version>
59 </dependency>
60 <dependency>
61 <groupId>org.pacesys.openstack4j.connectors</groupId>
62 <artifactId>openstack4j-http-connector</artifactId>
63 <version>2.11</version>
64 </dependency>
65 <dependency>
66 <groupId>org.pacesys.openstack4j.connectors</groupId>
67 <artifactId>openstack4j-httpclient</artifactId>
68 <version>2.11</version>
69 </dependency>
Hyunsun Moon7ad92202016-04-20 10:36:02 -070070 </dependencies>
71
Hyunsun Moone0f3e282016-05-13 18:58:35 -070072 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 <extensions>true</extensions>
78 <configuration>
79 <instructions>
80 <Import-Package>
81 !org.apache.http.*,
82 !com.fasterxml.jackson.dataformat.*,
83 !javax.annotation,*
84 </Import-Package>
85 <Embed-Dependency>
86 openstack4j-core,
87 openstack4j-http-connector,
88 openstack4j-httpclient
89 </Embed-Dependency>
90 </instructions>
91 </configuration>
92 </plugin>
93 </plugins>
94 </build>
95
Hyunsun Moon7ad92202016-04-20 10:36:02 -070096</project>