Files
core_wing_web/build.gradle

48 lines
1.5 KiB
Groovy
Raw Normal View History

2025-10-20 11:49:51 +08:00
plugins {
id 'org.springframework.boot' version '2.6.13'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'java'
}
group = 'com.corewing'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
2025-10-20 15:19:18 +08:00
dependencyManagement {
imports {
mavenBom "com.baomidou:mybatis-plus-bom:3.5.14"
}
}
2025-10-20 11:49:51 +08:00
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
2025-10-20 15:19:18 +08:00
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'com.baomidou:mybatis-plus-boot-starter'
implementation 'com.baomidou:mybatis-plus-generator'
implementation("com.baomidou:mybatis-plus-jsqlparser")
implementation 'cn.dev33:sa-token-spring-boot-starter:1.44.0'
implementation 'com.alibaba:druid-spring-boot-starter:1.2.27'
2025-10-20 11:49:51 +08:00
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}