Skip to content

Commit 04bb7dc

Browse files
committed
Bump ShardingSphere JDBC in Example to 5.5.2
1 parent 6de357c commit 04bb7dc

File tree

4 files changed

+5
-20
lines changed

4 files changed

+5
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- quartz-sample 多数据源集成quartz示例
2020
- shardingsphere-jdbc-4.x-spring-sample 集成 ShardingSphere JDBC Spring Boot Starter 4.1.1 使用示例, 不再维护,
2121
参考 https://github.com/apache/shardingsphere/releases/tag/5.0.0-alpha
22-
- shardingsphere-jdbc-5.x-core-sample 集成 ShardingSphere JDBC Driver 5.5.1 使用示例
22+
- shardingsphere-jdbc-5.x-core-sample 集成 ShardingSphere JDBC Driver 5.5.2 使用示例
2323
- shardingsphere-jdbc-5.x-spring-sample 集成 ShardingSphere JDBC Spring Boot Starter 5.2.1 使用示例, 不再维护,
2424
参考 https://github.com/apache/shardingsphere/issues/22469
2525
- spel-sample 动态从外部参数spel来切换数据源的使用示例

pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,6 @@
9191
</dependencies>
9292
</dependencyManagement>
9393

94-
<repositories>
95-
<repository>
96-
<id>aliyunmaven</id>
97-
<url>https://maven.aliyun.com/repository/public</url>
98-
</repository>
99-
</repositories>
100-
10194
<build>
10295
<plugins>
10396
<plugin>

third-part-samples/shardingsphere-sample/shardingsphere-jdbc-5.x-core-sample/pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>shardingsphere-jdbc-5.x-core-sample</artifactId>
1313

1414
<properties>
15-
<shardingsphere.version>5.5.1</shardingsphere.version>
15+
<shardingsphere.version>5.5.2</shardingsphere.version>
16+
<snakeyaml.version>2.2</snakeyaml.version>
1617
</properties>
1718

1819
<dependencies>
@@ -52,11 +53,6 @@
5253
<artifactId>spring-boot-starter-test</artifactId>
5354
<scope>test</scope>
5455
</dependency>
55-
<dependency>
56-
<groupId>org.yaml</groupId>
57-
<artifactId>snakeyaml</artifactId>
58-
<version>2.2</version>
59-
</dependency>
6056
</dependencies>
6157

6258
</project>

third-part-samples/shardingsphere-sample/shardingsphere-jdbc-5.x-spring-sample/pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
<properties>
1515
<shardingsphere.version>5.2.1</shardingsphere.version>
16+
<!--On ShardingSphere JDBC 5.2.1 we have to use the Java API of SnakeYAML 1.33-->
17+
<snakeyaml.version>1.33</snakeyaml.version>
1618
</properties>
1719

1820
<dependencies>
@@ -52,12 +54,6 @@
5254
<artifactId>spring-boot-starter-test</artifactId>
5355
<scope>test</scope>
5456
</dependency>
55-
<!--On ShardingSphere JDBC 5.2.1 we have to use the Java API of SnakeYAML 1.33-->
56-
<dependency>
57-
<groupId>org.yaml</groupId>
58-
<artifactId>snakeyaml</artifactId>
59-
<version>1.33</version>
60-
</dependency>
6157
</dependencies>
6258

6359
</project>

0 commit comments

Comments
 (0)