修改build.gradle以解决gradle编译问题
This commit is contained in:
@@ -2,6 +2,7 @@ plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.2.1'
|
||||
id 'io.spring.dependency-management' version '1.1.4'
|
||||
id 'io.freefair.lombok' version '6.2.0'
|
||||
}
|
||||
|
||||
group = 'com.realtime'
|
||||
@@ -29,11 +30,13 @@ dependencies {
|
||||
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||
|
||||
compileOnly 'org.projectlombok:lombok:1.18.14'
|
||||
compileOnly 'org.projectlombok:lombok'
|
||||
annotationProcessor 'org.projectlombok:lombok'
|
||||
|
||||
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||||
runtimeOnly 'com.mysql:mysql-connector-j'
|
||||
runtimeOnly 'com.oracle.database.jdbc:ojdbc8:19.7.0.0'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.14'
|
||||
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.3'
|
||||
|
||||
|
||||
@@ -91,10 +91,6 @@ public class TaskCommandInfo {
|
||||
@Schema(description = "最新下发时间", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@JsonProperty("latest_send_times")
|
||||
private LocalDateTime latestSendTime;
|
||||
|
||||
@Schema(description = "指令是否研判", example = "true")
|
||||
@JsonProperty("is_judeged")
|
||||
private Boolean isJudged = true;
|
||||
/*
|
||||
以下属性用于动态规则生成,不写入doris:t_command表
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user