Skip to content

Commit 9502432

Browse files
committed
release 0.0.2-beta source code for java
1 parent 9657d6f commit 9502432

File tree

707 files changed

+115655
-68
lines changed

Some content is hidden

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

707 files changed

+115655
-68
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
# 0.0.2-beta 2022-11-29
2+
3+
### G42Cloud SDK CBR
4+
5+
- _Features_
6+
- New Support CBR
7+
- _Bug Fix_
8+
- None
9+
- _Change_
10+
- None
11+
12+
### G42Cloud SDK CES
13+
14+
- _Features_
15+
- New Support CES
16+
- _Bug Fix_
17+
- None
18+
- _Change_
19+
- None
20+
21+
### G42Cloud SDK CSE
22+
23+
- _Features_
24+
- New Support CSE
25+
- _Bug Fix_
26+
- None
27+
- _Change_
28+
- None
29+
30+
### G42Cloud SDK CTS
31+
32+
- _Features_
33+
- New Support CTS
34+
- _Bug Fix_
35+
- None
36+
- _Change_
37+
- None
38+
39+
### G42Cloud SDK ELB
40+
41+
- _Features_
42+
- New Support ELB
43+
- _Bug Fix_
44+
- None
45+
- _Change_
46+
- None
47+
148
# 0.0.1-beta 2022-11-23
249

350
### G42Cloud SDK CCE

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
English | [简体中文](README_CN.md)
2-
31
<p align="center">
42
<a href="https://www.g42cloud.com/"><img style="background-color:black;" width="450px" height="102px" src="https://auth.g42cloud.com//authui/20220614193554/public/custom/images/logo.svg"></a>
53
</p>

pom.xml

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<packaging>pom</packaging>
88
<groupId>io.github.g42cloud-sdk</groupId>
99
<artifactId>g42cloud-sdk</artifactId>
10-
<version>0.0.1-beta</version>
10+
<version>0.0.2-beta</version>
1111
<name>G42 Cloud SDK for Java Parent</name>
1212
<description>G42 Cloud SDK for Java</description>
1313
<url>https://github.com/g42cloud-sdk/g42cloud-sdk-java</url>
@@ -35,7 +35,7 @@
3535

3636
<properties>
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38-
<revision>0.0.1-beta</revision>
38+
<revision>0.0.2-beta</revision>
3939
<snakeyaml.version>1.32</snakeyaml.version>
4040
<jackson.version>2.13.4</jackson.version>
4141
<jackson-databind.version>2.13.4.2</jackson-databind.version>
@@ -138,17 +138,6 @@
138138
<id>release</id>
139139
<build>
140140
<plugins>
141-
<plugin>
142-
<groupId>org.sonatype.plugins</groupId>
143-
<artifactId>nexus-staging-maven-plugin</artifactId>
144-
<version>1.6.7</version>
145-
<extensions>true</extensions>
146-
<configuration>
147-
<serverId>ossrh</serverId>
148-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
149-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
150-
</configuration>
151-
</plugin>
152141
<plugin>
153142
<groupId>org.apache.maven.plugins</groupId>
154143
<artifactId>maven-deploy-plugin</artifactId>
@@ -157,10 +146,10 @@
157146
<plugin>
158147
<groupId>org.apache.maven.plugins</groupId>
159148
<artifactId>maven-gpg-plugin</artifactId>
160-
<version>1.5</version>
149+
<version>1.4</version>
161150
<executions>
162151
<execution>
163-
<id>sign-artifacts</id>
152+
<id>sign-artifacts-for-release</id>
164153
<phase>verify</phase>
165154
<goals>
166155
<goal>sign</goal>
@@ -202,15 +191,14 @@
202191
</build>
203192
</profile>
204193
</profiles>
205-
206194
<distributionManagement>
207195
<snapshotRepository>
208196
<id>ossrh</id>
209-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
197+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
210198
</snapshotRepository>
211199
<repository>
212200
<id>ossrh</id>
213-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
201+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
214202
</repository>
215203
</distributionManagement>
216204

services/cbr/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<groupId>io.github.g42cloud-sdk</groupId>
7+
<version>0.0.2-beta</version>
8+
<artifactId>g42cloud-sdk-services</artifactId>
9+
<relativePath>..</relativePath>
10+
</parent>
11+
<artifactId>g42cloud-sdk-cbr</artifactId>
12+
<version>0.0.2-beta</version>
13+
<name>G42Cloud SDK for CBR</name>
14+
15+
<modelVersion>4.0.0</modelVersion>
16+
<packaging>jar</packaging>
17+
<dependencies>
18+
<dependency>
19+
<groupId>com.huaweicloud.sdk</groupId>
20+
<artifactId>huaweicloud-sdk-core</artifactId>
21+
<version>3.1.12</version>
22+
</dependency>
23+
</dependencies>
24+
25+
</project>

0 commit comments

Comments
 (0)