Skip to content

Commit 5d242b4

Browse files
committed
Generated java 2016-02-01 for CloudAPI.
1 parent b7d4f57 commit 5d242b4

File tree

389 files changed

+33695
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+33695
-0
lines changed

cloudapi-20160201/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2024-01-17 Version: 1.0.0
2+
- Generated java 2016-02-01 for CloudAPI.
3+

cloudapi-20160201/LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

cloudapi-20160201/README-CN.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[English](README.md) | 简体中文
2+
3+
![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
4+
5+
## Alibaba Cloud CloudAPI SDK for Java
6+
7+
## 安装
8+
9+
```xml
10+
<dependency>
11+
<groupId>com.aliyun</groupId>
12+
<artifactId>cloudapi20160201</artifactId>
13+
<version>使用maven标签所示版本</version>
14+
</dependency>
15+
```
16+
17+
## 问题
18+
19+
[提交 Issue](https://github.com/aliyun/alibabacloud-java-sdk/issues/new),不符合指南的问题可能会立即关闭。
20+
21+
## 使用说明
22+
23+
[快速使用](https://github.com/aliyun/alibabacloud-java-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8)
24+
25+
## 发行说明
26+
27+
每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
28+
29+
## 相关
30+
31+
- [最新源码](https://github.com/aliyun/alibabacloud-java-sdk/)
32+
33+
## 许可证
34+
35+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
36+
37+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.

cloudapi-20160201/README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
English | [简体中文](README-CN.md)
2+
![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
3+
4+
## Alibaba Cloud CloudAPI SDK for Java
5+
6+
## Installation
7+
8+
```xml
9+
<dependency>
10+
<groupId>com.aliyun</groupId>
11+
<artifactId>cloudapi20160201</artifactId>
12+
<version>Use the version shown in the maven badge</version>
13+
</dependency>
14+
```
15+
16+
## Issues
17+
[Opening an Issue](https://github.com/aliyun/alibabacloud-java-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
18+
19+
## Usage
20+
[Quick Examples](https://github.com/aliyun/alibabacloud-java-sdk/blob/master/docs/0-Examples-EN.md#quick-examples)
21+
22+
## Changelog
23+
Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
24+
25+
## References
26+
* [Latest Release](https://github.com/aliyun/alibabacloud-java-sdk/)
27+
28+
## License
29+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
30+
31+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.

cloudapi-20160201/pom.xml

+185
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.aliyun</groupId>
5+
<artifactId>cloudapi20160201</artifactId>
6+
<version>1.0.0</version>
7+
<packaging>jar</packaging>
8+
<name>cloudapi20160201</name>
9+
<description>Alibaba Cloud CloudAPI (20160201) SDK for Java
10+
</description>
11+
<url>https://github.com/aliyun/alibabacloud-java-sdk</url>
12+
<licenses>
13+
<license>
14+
<name>The Apache License, Version 2.0</name>
15+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<id>aliyunproducts</id>
21+
<name>Aliyun SDK</name>
22+
<email>aliyunsdk@aliyun.com</email>
23+
</developer>
24+
</developers>
25+
<distributionManagement>
26+
<snapshotRepository>
27+
<id>sonatype-nexus-snapshots</id>
28+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
29+
</snapshotRepository>
30+
<repository>
31+
<id>sonatype-nexus-staging</id>
32+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
33+
</repository>
34+
</distributionManagement>
35+
<scm>
36+
<connection/>
37+
<developerConnection/>
38+
<url/>
39+
</scm>
40+
<dependencies>
41+
<dependency>
42+
<groupId>com.aliyun</groupId>
43+
<artifactId>tea-util</artifactId>
44+
<version>0.2.21</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.aliyun</groupId>
48+
<artifactId>tea-openapi</artifactId>
49+
<version>0.3.1</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>com.aliyun</groupId>
53+
<artifactId>openapiutil</artifactId>
54+
<version>0.2.1</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>com.aliyun</groupId>
58+
<artifactId>endpoint-util</artifactId>
59+
<version>0.0.7</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.aliyun</groupId>
63+
<artifactId>tea</artifactId>
64+
<version>1.2.7</version>
65+
</dependency>
66+
</dependencies>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.6.1</version>
73+
<configuration>
74+
<source>7</source>
75+
<target>7</target>
76+
</configuration>
77+
</plugin>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-gpg-plugin</artifactId>
81+
<version>1.6</version>
82+
<executions>
83+
<execution>
84+
<id>sign-artifacts</id>
85+
<phase>verify</phase>
86+
<goals>
87+
<goal>sign</goal>
88+
</goals>
89+
</execution>
90+
</executions>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.sonatype.plugins</groupId>
94+
<artifactId>nexus-staging-maven-plugin</artifactId>
95+
<version>1.6.3</version>
96+
<extensions>true</extensions>
97+
<configuration>
98+
<serverId>sonatype-nexus-staging</serverId>
99+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
100+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
101+
</configuration>
102+
</plugin>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-javadoc-plugin</artifactId>
106+
<version>3.1.1</version>
107+
<configuration>
108+
<encoding>UTF-8</encoding>
109+
<doclint>none</doclint>
110+
</configuration>
111+
</plugin>
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-surefire-plugin</artifactId>
115+
<version>2.22.1</version>
116+
</plugin>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-shade-plugin</artifactId>
120+
<version>3.2.4</version>
121+
<executions>
122+
<execution>
123+
<phase>package</phase>
124+
<goals>
125+
<goal>shade</goal>
126+
</goals>
127+
<configuration>
128+
<relocations>
129+
<relocation>
130+
<pattern>com.google</pattern>
131+
<shadedPattern>com.aliyun.cloudapi20160201.external.google</shadedPattern>
132+
</relocation>
133+
<relocation>
134+
<pattern>okhttp3</pattern>
135+
<shadedPattern>com.aliyun.cloudapi20160201.external.okhttp3</shadedPattern>
136+
</relocation>
137+
<relocation>
138+
<pattern>okio</pattern>
139+
<shadedPattern>com.aliyun.cloudapi20160201.external.okio</shadedPattern>
140+
</relocation>
141+
<relocation>
142+
<pattern>javax.xml</pattern>
143+
<shadedPattern>com.aliyun.cloudapi20160201.external.javax.xml</shadedPattern>
144+
</relocation>
145+
<relocation>
146+
<pattern>com.sun</pattern>
147+
<shadedPattern>com.aliyun.cloudapi20160201.external.com.sun</shadedPattern>
148+
</relocation>
149+
<relocation>
150+
<pattern>org.apache</pattern>
151+
<shadedPattern>com.aliyun.cloudapi20160201.external.org.apache</shadedPattern>
152+
</relocation>
153+
<relocation>
154+
<pattern>org.slf4j</pattern>
155+
<shadedPattern>com.aliyun.cloudapi20160201.external.org.slf4j</shadedPattern>
156+
</relocation>
157+
</relocations>
158+
<artifactSet>
159+
<excludes>
160+
<exclude>org.jacoco:*</exclude>
161+
</excludes>
162+
</artifactSet>
163+
<filters>
164+
<filter>
165+
<artifact>*:*</artifact>
166+
<excludes>
167+
<exclude>META-INF/*.SF</exclude>
168+
<exclude>META-INF/*.DSA</exclude>
169+
<exclude>META-INF/*.RSA</exclude>
170+
<exclude>**/pom.xml</exclude>
171+
</excludes>
172+
</filter>
173+
</filters>
174+
<transformers>
175+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
176+
</transformers>
177+
<shadedArtifactAttached>true</shadedArtifactAttached>
178+
<shadedClassifierName>shaded</shadedClassifierName>
179+
</configuration>
180+
</execution>
181+
</executions>
182+
</plugin>
183+
</plugins>
184+
</build>
185+
</project>

0 commit comments

Comments
 (0)