|
@@ -91,6 +91,10 @@ repositories {
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
+ //implementation 'org.projectlombok:lombok:1.18.10'
|
|
|
+ compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
|
|
|
+ annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
|
|
|
+ implementation 'com.tencentcloudapi:tencentcloud-sdk-java:3.1.695'
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:2.4.5'
|
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-logging:2.4.5'
|
|
@@ -117,3 +121,8 @@ tasks.withType(JavaCompile) {
|
|
|
options.encoding = 'UTF-8'
|
|
|
options.compilerArgs << "-Xlint:unchecked"
|
|
|
}
|
|
|
+
|
|
|
+/* gradle test 编译器 */
|
|
|
+test {
|
|
|
+ useJUnitPlatform()
|
|
|
+}
|