This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new a2301f3491 [ZEPPELIN-6101][FOLLOWUP] Fix build with profile include-hadoop a2301f3491 is described below commit a2301f3491d229c82905b1bdb056b5b9ef616cfd Author: Cheng Pan <cheng...@apache.org> AuthorDate: Mon Oct 7 22:18:30 2024 +0800 [ZEPPELIN-6101][FOLLOWUP] Fix build with profile include-hadoop ### What is this PR for? when building with `-Pinclude-hadoop`, `com.google.code.findbugs:jsr305`'s scope becomes runtime thus failing the build. ### What type of PR is it? Bug Fix ### Todos ### What is the Jira issue? ZEPPELIN-6101 ### How should this be tested? tested with the command `./mvnw clean package -Pbuild-distr -DskipTests -Pinclude-hadoop` ### Screenshots (if appropriate) ### Questions: * Does the license files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Closes #4859 from pan3793/ZEPPELIN-6101-followup. Signed-off-by: Philipp Dallig <philipp.dal...@gmail.com> --- zeppelin-interpreter/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml index 7ef81f82de..1a1ea2ce6c 100644 --- a/zeppelin-interpreter/pom.xml +++ b/zeppelin-interpreter/pom.xml @@ -71,6 +71,11 @@ <artifactId>gson</artifactId> </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </dependency> + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-configuration2</artifactId>