Skip to content

Commit 0e8bdd4

Browse files
authored
Merge pull request #1 from volcengine/for_iaas_3.8.0
feat: for ecs 3.8.0
2 parents 506b449 + 6f88fe5 commit 0e8bdd4

File tree

14 files changed

+34
-19
lines changed

14 files changed

+34
-19
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@
3030

3131
建议使用Maven构建自己的项目,添加需要的相应模块的依赖,示例如下:
3232

33+
##### Init maven setting.xml #####
34+
需要使用字节跳动的maven仓库来完成依赖,请先到maven安装目录的conf/setting.xml
35+
在<mirrors/>标签中增加
36+
37+
```xml
38+
<mirror>
39+
<id>bytedanceMaven</id>
40+
<mirrorOf>my-repo-id</mirrorOf>
41+
<name>字节跳动maven仓库</name>
42+
<url>https://artifact.bytedance.com/repository/releases/</url>
43+
</mirror>
44+
```
45+
3346
##### Importing the pom #####
3447

3548
```xml

pom.xml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcstack-java-sdk</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.1.0-SHAPSHOT</version>
7+
<version>0.1.0</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<java.source.version>1.7</java.source.version>
@@ -72,14 +72,16 @@
7272
</dependencies>
7373
</dependencyManagement>
7474
<distributionManagement>
75-
<snapshotRepository>
76-
<id>ossrh</id>
77-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
78-
</snapshotRepository>
7975
<repository>
80-
<id>ossrh</id>
81-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
76+
<id>maven.byted.org</id>
77+
<name>maven.byted.org</name>
78+
<url>https://artifact-maven.byted.org/repository/releases/</url>
8279
</repository>
80+
<snapshotRepository>
81+
<id>maven.byted.org</id>
82+
<name>maven.byted.org</name>
83+
<url>https://artifact-maven.byted.org/repository/releases/</url>
84+
</snapshotRepository>
8385
</distributionManagement>
8486
<build>
8587
<plugins>

volcstack-java-sdk-autoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-cen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-clb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcstack-java-sdk</artifactId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.volcengine.volcstack.version;
22

33
public class Version {
4-
public final static String SDK_VERSION = "0.1.0-SHAPSHOT";
4+
public final static String SDK_VERSION = "0.1.0";
55
public final static String SDK_NAME = "volcstack-java-sdk";
66
}

volcstack-java-sdk-directconnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-ecs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.0-SHAPSHOT</version>
6+
<version>0.1.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)