[api] 디폴트 셋팅

This commit is contained in:
2026-01-30 18:05:35 +09:00
parent 43ab8db6fc
commit bac18a72f5
11 changed files with 451 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.10'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.alist'
version = '0.0.1-SNAPSHOT'
description = 'alist api project'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}