-
Notifications
You must be signed in to change notification settings - Fork 0
Multi_Module
rhs edited this page Jul 9, 2021
·
1 revision
[참고] 진행 version [ver.5.0, ver.5.2.1]
- setting.gradle 에 include '[module명]' 추가
- build.gralde
plugins {
id 'java'
}
group 'io.collectioncode'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
sourceSets*.java.srcDirs*.each {
if (!it.exists()) it.mkdirs()
}
sourceSets*.resources.srcDirs*.each {
if (!it.exists()) it.mkdirs()
}
}
dependencies {
}
```
- 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' }