Skip to content

Commit

Permalink
feature: up seata dependency to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xjlgod committed Sep 13, 2024
1 parent c9a6d84 commit 96d7946
Show file tree
Hide file tree
Showing 37 changed files with 88 additions and 88 deletions.
6 changes: 3 additions & 3 deletions at-sample/at-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.seata</groupId>
<artifactId>at-api</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -59,9 +59,9 @@
<!-- log dependency end -->

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-all</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion at-sample/at-api/seata-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ e2e:
- name: seata-server
docker_service:
hostname: seata
image: seataio/seata-server:2.0.0
image: apache/seata-server:2.1.0
environment:
SEATA_PORT: 8091
STORE_MODE: file
Expand Down
2 changes: 1 addition & 1 deletion at-sample/dubbo-samples-seata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ password: 123456
```
### 步骤 3:启动Seata-Server
- 本文使用的是Seata-Server V2.0.0版本。
- 本文使用的是Seata-Server V2.1.0版本。
请将下载的Seata-Server二进制包解压,并进入bin目录,然后执行以下命令即可启动Seata-Server。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata?serverTimezone=Asia/Shanghai&useSSL=false&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useOldAliasMetadataBehavior=true
username: root
password: helloworld
password: 123456
hikari:
connection-timeout: 30000
idle-timeout: 600000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata?serverTimezone=Asia/Shanghai&useSSL=false&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useOldAliasMetadataBehavior=true
username: root
password: helloworld
password: 123456
hikari:
connection-timeout: 30000
idle-timeout: 600000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata?serverTimezone=Asia/Shanghai&useSSL=false&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useOldAliasMetadataBehavior=true
username: root
password: helloworld
password: 123456
hikari:
connection-timeout: 30000
idle-timeout: 600000
Expand Down
4 changes: 2 additions & 2 deletions at-sample/dubbo-samples-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
6 changes: 3 additions & 3 deletions at-sample/spring-dubbo-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<groupId>org.apache.seata</groupId>
<artifactId>spring-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -60,9 +60,9 @@
<!-- log dependency end -->

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-all</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions at-sample/spring-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<groupId>org.apache.seata</groupId>
<artifactId>spring-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -60,9 +60,9 @@
<!-- log dependency end -->

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-all</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion at-sample/springboot-dubbo-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata</name>
<description>springboot-dubbo-seata</description>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion at-sample/springboot-dubbo-seata/seata-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ e2e:
- name: seata-server
docker_service:
hostname: seata
image: seataio/seata-server:2.0.0
image: seataio/seata-server:2.1.0
# ports:
# - "7091:7091"
# - "8091:8091"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>springboot-dubbo-seata-account</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata-account</name>
<description>springboot-dubbo-seata-account</description>

Expand Down Expand Up @@ -66,9 +66,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata-common</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>springboot-dubbo-seata-business</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata-business</name>
<description>springboot-dubbo-seata-business</description>

Expand Down Expand Up @@ -66,9 +66,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand All @@ -95,7 +95,7 @@
<dependency>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata-common</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>springboot-dubbo-seata-common</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata-common</name>
<description>springboot-dubbo-seata-common</description>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>springboot-dubbo-seata-order</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata-order</name>
<description>springboot-dubbo-seata-order</description>

Expand Down Expand Up @@ -66,9 +66,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata-common</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>springboot-dubbo-seata-storage</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-dubbo-seata-storage</name>
<description>springboot-dubbo-seata-storage</description>

Expand Down Expand Up @@ -48,9 +48,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-dubbo-seata-common</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions at-sample/springboot-mybatis-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-mybatis-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-mybatis-seata</name>
<description>springboot-mybatis-seata</description>
<properties>
Expand All @@ -47,9 +47,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions at-sample/springboot-seata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.seata</groupId>
<artifactId>springboot-seata</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>springboot-seata</name>
<description>springboot-seata</description>
<properties>
Expand All @@ -47,9 +47,9 @@
</dependency>

<dependency>
<groupId>io.seata</groupId>
<groupId>org.apache.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions e2e-test/e2e-test-builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>org.apache.seata</groupId>
<artifactId>e2e-test</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<groupId>org.apache.seata</groupId>
<artifactId>e2e-test-builder</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<name>e2e-test-builder</name>

<dependencies>
Expand Down
Loading

0 comments on commit 96d7946

Please sign in to comment.