forked from openstack4j/openstack4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (56 loc) · 2.5 KB
/
pom.xml
File metadata and controls
61 lines (56 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.github.openstack4j.core.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>co-3.12.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-httpclient</artifactId>
<name>OpenStack4j HttpComponents-HttpClient Connector</name>
<url>https://github.com/openstack4j/openstack4j/</url>
<packaging>jar</packaging>
<properties>
<httpclient-version>4.3.1</httpclient-version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Name>${project.name}</Bundle-Name>
<Export-Package>
org.openstack4j.connectors.httpclient
</Export-Package>
<Import-Package>
!org.openstack4j.connectors.httpclient,
*
</Import-Package>
<!--
Required for SPI in OSGi:
http://aries.apache.org/modules/spi-fly.html#specconf
This bundle defines an implementation for following services in META-INF-services:
org.openstack4j.core.transport.HttpExecutorService
-->
<Require-Capability>
osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"
</Require-Capability>
<Provide-Capability>
osgi.serviceloader; osgi.serviceloader=org.openstack4j.core.transport.HttpExecutorService
</Provide-Capability>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>