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' // Web 기본 implementation 'org.springframework.boot:spring-boot-starter-web' } tasks.named('test') { useJUnitPlatform() } bootJar { archiveFileName = "api.jar" } jar { enabled = false }