cstamas commented on code in PR #2278: URL: https://github.com/apache/maven/pull/2278#discussion_r2062696771
########## impl/maven-impl/src/main/java/org/apache/maven/impl/DefaultSourceRoot.java: ########## @@ -79,7 +79,12 @@ public DefaultSourceRoot(final Session session, final Path baseDir, final Source if (value != null) { directory = baseDir.resolve(value); } else { - directory = baseDir.resolve("src").resolve(scope.id()).resolve(language.id()); + var src = baseDir.resolve("src"); Review Comment: Do we use `var` in maven codebase? I kinda remember we agreed not to? (but I may be missing some later agreement). -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org