From 5b7db81fb422a216d11e1057a07bf28e6c37e3f0 Mon Sep 17 00:00:00 2001 From: CloudPlayer <2909078582@qq.com> Date: Mon, 14 Aug 2023 21:06:24 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=94=B9=E6=AD=A3=E4=BA=86=E6=B3=A8?= =?UTF-8?q?=E8=A7=A3=E5=A4=84=E7=90=86=E5=99=A8=E4=B8=AD=E7=9A=84=E5=86=85?= =?UTF-8?q?=E5=AE=B9=EF=BC=8C=E5=B0=86=E5=85=B6=E4=BF=AE=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E7=9A=84=E6=B3=A8=E8=A7=A3=E5=A4=84=E7=90=86?= =?UTF-8?q?=E5=99=A8=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh/intro/gradle.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index 3df3d791..f38b7b39 100644 --- a/docs/zh/intro/gradle.md +++ b/docs/zh/intro/gradle.md @@ -64,13 +64,13 @@ dependencies { **【Kotlin】** ```kotlin dependencies { - annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:1.5.6") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.5.6") } ``` **【Groovy】** ```groovy dependencies { - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:1.5.6' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.5.6' } ``` From 9d543ca654d3b8b9fb5e4d865920c29e9a528ef2 Mon Sep 17 00:00:00 2001 From: CloudPlayer <2909078582@qq.com> Date: Mon, 14 Aug 2023 21:10:09 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=94=B9=E6=AD=A3=E4=BA=86=E6=B3=A8?= =?UTF-8?q?=E8=A7=A3=E5=A4=84=E7=90=86=E5=99=A8=E4=B8=AD=E7=9A=84=E5=86=85?= =?UTF-8?q?=E5=AE=B9=EF=BC=8C=E5=B0=86=E5=85=B6=E4=BF=AE=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E7=9A=84=E6=B3=A8=E8=A7=A3=E5=A4=84=E7=90=86?= =?UTF-8?q?=E5=99=A8=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh/others/kapt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh/others/kapt.md b/docs/zh/others/kapt.md index 174511cf..34ed3437 100644 --- a/docs/zh/others/kapt.md +++ b/docs/zh/others/kapt.md @@ -28,7 +28,7 @@ plugins { ```kotlin dependencies { - kapt("org.springframework.boot:spring-boot-configuration-processor:1.5.6") + kapt("com.mybatis-flex:mybatis-flex-processor:1.5.6") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - kapt 'org.springframework.boot:spring-boot-configuration-processor:1.5.6' + kapt 'com.mybatis-flex:mybatis-flex-processor:1.5.6' } ```