chore: プロジェクトの設定を変更

This commit is contained in:
usbharu 2024-05-04 13:11:49 +09:00
parent 6e1ca49023
commit 374b5581f6
1 changed files with 14 additions and 4 deletions

View File

@ -34,12 +34,22 @@ version = "0.0.1"
sourceSets { sourceSets {
create("intTest") { create("intTest") {
compileClasspath += sourceSets.main.get().output test {
runtimeClasspath += sourceSets.main.get().output compileClasspath += sourceSets.main.get().output
runtimeClasspath += sourceSets.main.get().output
kotlin.srcDirs("src/intTest/kotlin")
java.srcDirs("src/intTest/java")
resources.srcDirs("src/intTest/resources")
}
} }
create("e2eTest") { create("e2eTest") {
compileClasspath += sourceSets.main.get().output test {
runtimeClasspath += sourceSets.main.get().output compileClasspath += sourceSets.main.get().output
runtimeClasspath += sourceSets.main.get().output
kotlin.srcDirs("src/e2eTest/kotlin")
java.srcDirs("src/e2eTest/java")
resources.srcDirs("src/e2eTest/resources")
}
} }
} }