We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd17d2 commit b77ae10Copy full SHA for b77ae10
1 file changed
gatling-runner/build.gradle
@@ -59,6 +59,13 @@ dependencies {
59
testRuntimeOnly libs.slf4j.simple
60
}
61
62
+// composite build(includeBuild)에서 gatling 소스셋 클래스를 찾을 수 있도록
63
+// 기본 jar에 gatling 소스셋 출력을 포함시킨다.
64
+jar {
65
+ from sourceSets.gatling.output
66
+}
67
+jar.dependsOn(compileGatlingJava)
68
+
69
compileTestJava.dependsOn(compileGatlingJava)
70
71
test {
0 commit comments