You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
691 B

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()
}