diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index 434a5b24..77d44ecc 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' } ``` 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' } ```