intellij gradle exclude bin directory

Dae-Hwa Jeong·2022년 12월 27일
0

미세팁

목록 보기
1/4
// build.gradle.kts
plugins {
    idea
}

idea.module {
    excludeDirs.addAll(allprojects.map { it.file("bin") })
}
profile
대화로그

0개의 댓글