!287 修正gradle文档中出现的bug

Merge pull request !287 from CloudPlayer/main
This commit is contained in:
Michael Yang 2023-08-14 13:45:32 +00:00 committed by Gitee
commit 7f5a4195d3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 4 additions and 4 deletions

View File

@ -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'
}
```

View File

@ -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'
}
```