代码拉取完成,页面将自动刷新
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.9'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
allprojects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
// api 编译和运行时都需要的依赖项,并包含在已发布的 API 中
implementation 'org.springframework.boot:spring-boot-starter-web' // 编译和运行时都需要的依赖项
compileOnly 'org.projectlombok:lombok' // 仅编译所需的依赖项,不包含在 runtime 或发布中
runtimeOnly 'com.mysql:mysql-connector-j' // 仅在运行时需要的依赖项,不包含在 compile Classpath 中
annotationProcessor 'org.projectlombok:lombok' // 用于编译时注解处理的工具,它可以在编译时期处理注解,生成额外的代码
testImplementation 'org.springframework.boot:spring-boot-starter-test' // 编译和运行测试所需的依赖项。
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' // 仅运行测试所需的依赖项
testRuntimeOnly 'org.junit.jupiter:junit-jupiter:5.8.2'
testRuntimeOnly 'org.mockito:mockito-core:5.2.0'
testRuntimeOnly 'org.mockito:mockito-junit-jupiter:5.2.0'
implementation('org.apache.commons:commons-lang3')
implementation 'com.baomidou:mybatis-plus:3.5.7'
implementation 'com.baomidou:mybatis-plus-spring-boot3-starter:3.5.7'
implementation 'com.baomidou:mybatis-plus-generator:3.5.7'
implementation('org.springframework.boot:spring-boot-starter-freemarker')
implementation('org.apache.velocity:velocity-engine-core:2.4')
implementation('com.alibaba:fastjson:1.2.83')
implementation('com.github.jsqlparser:jsqlparser:5.0')
implementation('com.alibaba:easyexcel:3.3.2')
implementation('cn.hutool:hutool-all:5.8.27')
}
tasks.named('test') {
useJUnitPlatform()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。