52 lines
1.3 KiB
Groovy
52 lines
1.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.3.2'
|
|
id 'io.spring.dependency-management' version '1.1.6'
|
|
}
|
|
|
|
group = 'com.example'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url 'https://maven.aliyun.com/repository/public/'
|
|
}
|
|
maven {
|
|
url 'https://maven.aliyun.com/repository/spring/'
|
|
}
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'com.baomidou:mybatis-plus-spring-boot3-starter:3.5.7'
|
|
implementation 'p6spy:p6spy:3.9.1'
|
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
|
runtimeOnly 'mysql:mysql-connector-java:8.0.30'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'com.baomidou:mybatis-plus-boot-starter-test:3.5.7'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.34'
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
systemProperty 'file.encoding', 'UTF-8'
|
|
} |