This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git


The following commit(s) were added to refs/heads/main by this push:
     new f25848cf2 omit the core protobuf-java classes from the jar (#1459)
f25848cf2 is described below

commit f25848cf2c60527758c1c837888e26222dda8228
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Feb 26 11:56:06 2026 +0100

    omit the core protobuf-java classes from the jar (#1459)
---
 build.sbt | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/build.sbt b/build.sbt
index c278e43ab..06e87f2fc 100644
--- a/build.sbt
+++ b/build.sbt
@@ -234,11 +234,10 @@ lazy val googleCloudBigQueryStorage = 
pekkoConnectorProject(
     "-Wconf:src=.+/pekko-grpc/main/.+:s",
     "-Wconf:src=.+/pekko-grpc/test/.+:s"),
   compile / javacOptions := (compile / javacOptions).value.filterNot(_ == 
"-Xlint:deprecation"),
-  Compile / compileOrder := CompileOrder.JavaThenScala,
-  Test / compileOrder := CompileOrder.Mixed,
-  // the following is needed to exclude the gRPC generated sources for 
protobuf-java from the doc sources,
-  // otherwise the Scaladoc tool fails - 
https://github.com/apache/pekko-connectors/issues/1440
-  Compile / doc / sources := (Compile / doc / sources).value.filterNot { f =>
+  // the following is needed to exclude the gRPC generated sources for 
protobuf-java from the sources,
+  // they cause Scaladoc tool fails - 
https://github.com/apache/pekko-connectors/issues/1440
+  // and issues like https://github.com/apache/pekko-connectors/issues/1457
+  Compile / sources := (Compile / sources).value.filterNot { f =>
     f.getPath.replace('\\', 
'/').contains("/pekko-grpc/main/com/google/protobuf")
   },
   Test / fork := true,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to