plugins { id 'java' id 'org.springframework.boot' version '3.4.3' id 'io.spring.dependency-management' version '1.1.7' } group = 'com.bsmlab.dfx' version = '0.0.1-SNAPSHOT' description = 'DFX Command' java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } bootRun { // 실행시 jvm에 -D 옵션을 적용하기 위하여 설정 systemProperties System.properties } 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() }