From 785ea7ae6936c64c89bb809ca47be784f373e6b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B9=8C=E9=B8=A6=E7=AC=91=E7=8C=AA=E9=BB=91?= Date: Tue, 22 Aug 2023 02:20:49 +0000 Subject: [PATCH] update docs/zh/intro/gradle.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 乌鸦笑猪黑 --- docs/zh/intro/gradle.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index cafe8569..e4359e06 100644 --- a/docs/zh/intro/gradle.md +++ b/docs/zh/intro/gradle.md @@ -10,7 +10,7 @@ ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-core:1.5.6") + implementation("com.mybatis-flex:mybatis-flex-core:1.5.8") } ``` @@ -18,7 +18,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-core:1.5.6' + implementation 'com.mybatis-flex:mybatis-flex-core:1.5.8' } ``` @@ -28,7 +28,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring:1.5.6") + implementation("com.mybatis-flex:mybatis-flex-spring:1.5.8") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring:1.5.6' + implementation 'com.mybatis-flex:mybatis-flex-spring:1.5.8' } ``` @@ -46,7 +46,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.6") + implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.8") } ``` @@ -54,7 +54,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.6' + implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.8' } ``` @@ -70,7 +70,7 @@ dependencies { ```kotlin dependencies { - annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.5.6") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.5.8") } ``` @@ -78,6 +78,6 @@ dependencies { ```groovy dependencies { - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.5.6' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.5.8' } ```