파일경로 탐색
Less than 1 minute
파일경로 탐색 관련
Gradle > Snippets
Snippets
(빌드 후) 빌드된 결과물을 자동으로 보기위해 사용
./
./<모듈>/
build.gradle
Groovy
task exploreOutput {
description = "find artifact(s) in the project directory"
doLast {
java.awt.Desktop.desktop.open(layout.buildDirectory.dir("libs").get().asFile)
}
}
// "<모듈명>/build/libs" 밑에 결과물이 존재할 경우 ...
tasks.war.finalizedBy exploreOutput
Kotlin
import java.awt.Desktop
// ... 생략 ...
task("exploreOutput") {
description = "find artifact(s) in the project directory"
doLast {
Desktop.getDesktop().open(url.toURI())
}
}
// "<모듈명>/build/libs" 밑에 결과물이 존재할 경우 ...
tasks.war { finalizedBy(tasks.named("exploreOutput")) }