blob: 49b07a91e0408875846e3e03ad99809114a35de8 [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 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-xos-client</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>XOS client service</description>
33
34 <properties>
35 <onos.app.name>org.onosproject.xosclient</onos.app.name>
36 <onos.app.title>XOS Client App</onos.app.title>
37 <onos.app.category>Utility</onos.app.category>
38 <onos.app.url>http://onosproject.org</onos.app.url>
39 <onos.app.readme>XOS Client Application.</onos.app.readme>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
46 </dependency>
Hyunsun Moon4c396632016-05-13 04:17:53 -070047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-misc</artifactId>
50 <version>${project.version}</version>
51 </dependency>
Hyunsun Moone0f3e282016-05-13 18:58:35 -070052 <dependency>
53 <groupId>org.pacesys</groupId>
54 <artifactId>openstack4j-core</artifactId>
55 <version>2.11</version>
56 </dependency>
57 <dependency>
58 <groupId>org.pacesys.openstack4j.connectors</groupId>
59 <artifactId>openstack4j-http-connector</artifactId>
60 <version>2.11</version>
61 </dependency>
62 <dependency>
63 <groupId>org.pacesys.openstack4j.connectors</groupId>
64 <artifactId>openstack4j-httpclient</artifactId>
65 <version>2.11</version>
66 </dependency>
Hyunsun Moon7ad92202016-04-20 10:36:02 -070067 </dependencies>
68
Hyunsun Moone0f3e282016-05-13 18:58:35 -070069 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 <extensions>true</extensions>
75 <configuration>
76 <instructions>
77 <Import-Package>
78 !org.apache.http.*,
79 !com.fasterxml.jackson.dataformat.*,
80 !javax.annotation,*
81 </Import-Package>
82 <Embed-Dependency>
83 openstack4j-core,
84 openstack4j-http-connector,
85 openstack4j-httpclient
86 </Embed-Dependency>
87 </instructions>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92
Hyunsun Moon7ad92202016-04-20 10:36:02 -070093</project>