2024-05-08 09:30:42 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.springframework.boot' version '3.2.5'
|
|
|
|
id 'io.spring.dependency-management' version '1.1.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'com.lk'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = '17'
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
compileOnly {
|
|
|
|
extendsFrom annotationProcessor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-data-jpa'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
|
2024-05-13 13:56:30 +08:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
|
|
|
|
|
|
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
|
|
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5'
|
|
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5'
|
2024-05-08 09:30:42 +08:00
|
|
|
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
runtimeOnly 'com.h2database:h2'
|
|
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|