openstack4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.huawei</groupId>
<artifactId>openstack4j</artifactId>
<version>1.0.26</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>openstack4j-parent</artifactId>
<groupId>com.huawei</groupId>
<version>1.0.26</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j</artifactId>
<name>Huaweicloud SDK Java</name>
<description>Huawei Cloud Open API SDK for Java</description>
<url>https://github.com/huaweicloud/huaweicloud-sdk-java/</url>
<build>
<finalName>openstack4j</finalName>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.3.3</version>
<executions>
<execution>
<id>withdeps-shade</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>withdeps</shadedClassifierName>
</configuration>
</execution>
<execution>
<id>mainartifact-shade</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>com.huawei:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.huawei.openstack4j.connectors</groupId>
<artifactId>openstack4j-jersey2</artifactId>
<version>1.0.26</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>