pjfanning commented on PR #1382: URL: https://github.com/apache/pekko-connectors/pull/1382#issuecomment-3813843767
@He-Pin @raboof the issue in this PR and in #1383 is that extra source code is generated by protobuf as part of the build. Something in the new proto files in the new dependency jars (that caused the PRs to be created), is leading to the com.google.protobuf classes being generated. These are unnecessary because the classes appear in protobuf-java jar anyway. Scala 3.3 compiler is not able to parse the generated com/google/protobuf/JavaFeaturesProto.java file. Complains that it can't find java.lang and other common JRE classes. It does feel like a bug in the Scala 3.3 compiler. I wonder if there is away to get the build to use the Java compiler to parse this class. Also, it would be great to stop the generation of this unnecessary class or at least to skip over it when compiling. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
