Skip to content
rhs edited this page Jul 9, 2021 · 8 revisions

ver.5.0, ver.5.2.1

  • Multi module
  • setting.gradle 에 include '[module명]' 추가

subprojects {

 apply plugin: 'java'

 sourceSets*.java.srcDirs*.each {
   if (!it.exists()) it.mkdirs()
 }
 sourceSets*.resources.srcDirs*.each {
   if (!it.exists()) it.mkdirs()
 }

}

  • java/gradle junit 5

dependencies {
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}

Clone this wiki locally