Abacn commented on code in PR #37133:
URL: https://github.com/apache/beam/pull/37133#discussion_r2627671322
##########
runners/flink/flink_runner.gradle:
##########
@@ -68,10 +70,16 @@ evaluationDependsOn(":examples:java")
*/
def sourceOverridesBase =
project.layout.buildDirectory.dir('source-overrides/src').get()
-def copySourceOverrides = tasks.register('copySourceOverrides', Copy) {
- it.from main_source_overrides
- it.into "${sourceOverridesBase}/main/java"
- it.duplicatesStrategy DuplicatesStrategy.INCLUDE
+def copySourceOverrides = tasks.register('copySourceOverrides', Copy) {
copyTask ->
Review Comment:
currently if I overwrite a source file, saying, in Flink 1.20 module. I need
to move that source file out of common src/ and branch it in both 1.17 and 1.20
paths.
After this change, I only need to create a file in 1.20 path to overwrite.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]