You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.4.5'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
}
|
|
|
|
group = 'com.iflytop'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.5.16'
|
|
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.48.0.0'
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.4'
|
|
implementation group: 'org.freemarker', name: 'freemarker', version: '2.3.34'
|
|
implementation group: 'com.baomidou', name: 'mybatis-plus-boot-starter', version: '3.5.10.1'
|
|
implementation group: 'com.baomidou', name: 'mybatis-plus-jsqlparser', version: '3.5.10.1'
|
|
implementation group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.5.10.1'
|
|
implementation group: 'cn.hutool', name: 'hutool-all', version: '5.8.35'
|
|
implementation group: 'com.github.xiaoymin', name: 'knife4j-openapi3-jakarta-spring-boot-starter', version: '4.5.0'
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-websocket', version: '3.4.2'
|
|
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|