mirror of https://github.com/apache/kafka.git
KAFKA-17195 remove generated code path from test scrope of sourceSets (#16688)
The generated code path added to test scope of sourceSets will make `Gradle` assume there are tests in module, and then it results in failed test task since the module does not define test engine. Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
437b86cd20
commit
ee03c5f98a
|
@ -1395,7 +1395,7 @@ project(':group-coordinator') {
|
|||
}
|
||||
test {
|
||||
java {
|
||||
srcDirs = ["src/generated/java", "src/test/java"]
|
||||
srcDirs = ["src/test/java"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1450,7 +1450,7 @@ project(':transaction-coordinator') {
|
|||
}
|
||||
test {
|
||||
java {
|
||||
srcDirs = ["src/generated/java", "src/test/java"]
|
||||
srcDirs = ["src/test/java"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue