2024-11-05 11:32:14 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.springframework.boot' version '3.3.5'
|
|
|
|
id 'io.spring.dependency-management' version '1.1.6'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'com.lk.demo'
|
|
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' }
|
|
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
2024-11-06 09:15:16 +08:00
|
|
|
runtimeOnly 'com.h2database:h2:2.1.214'
|
2024-11-05 11:32:14 +08:00
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|