pan3793 commented on code in PR #6449: URL: https://github.com/apache/kyuubi/pull/6449#discussion_r1634058304
########## integration-tests/kyuubi-gluten-it/pom.xml: ########## @@ -88,11 +97,26 @@ <artifactId>spark-hive_${scala.binary.version}</artifactId> <scope>test</scope> </dependency> + + <!-- javax.servlet-api is required by Spark 3.x --> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory> <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory> + <extensions> + <!-- provides os.detected.classifier (i.e. linux-x86_64, osx-x86_64) property --> + <extension> + <groupId>kr.motd.maven</groupId> + <artifactId>os-maven-plugin</artifactId> Review Comment: we're likely to reuse this plugin for proto file gen, let's pullout it to the root pom -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org