|
@@ -5,8 +5,12 @@
|
|
|
plugins {
|
|
|
id 'java'
|
|
|
id 'maven-publish'
|
|
|
+ id "org.asciidoctor.convert" version "2.3.0"
|
|
|
+ id 'org.springframework.boot' version '2.4.5'
|
|
|
}
|
|
|
|
|
|
+apply plugin: 'io.spring.dependency-management'
|
|
|
+
|
|
|
repositories {
|
|
|
mavenLocal()
|
|
|
maven {
|
|
@@ -93,8 +97,8 @@ repositories {
|
|
|
dependencies {
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.4.5'
|
|
|
implementation 'cn.hutool:hutool-all:5.8.12'
|
|
|
- compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
|
|
|
- annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
|
|
|
+ compileOnly 'org.projectlombok:lombok:1.18.10'
|
|
|
+ annotationProcessor 'org.projectlombok:lombok: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'
|
|
@@ -125,5 +129,6 @@ tasks.withType(JavaCompile) {
|
|
|
|
|
|
/* gradle test 编译器 */
|
|
|
test {
|
|
|
+ enabled = false
|
|
|
useJUnitPlatform()
|
|
|
}
|