mirror of https://github.com/usbharu/Hideout.git
chore: プロジェクトの設定を変更
This commit is contained in:
parent
6e1ca49023
commit
374b5581f6
|
@ -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")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue