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

pdallig pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.12 by this push:
     new d71edb615d [ZEPPELIN-6101][FOLLOWUP] Fix build with profile 
include-hadoop
d71edb615d is described below

commit d71edb615db42862d2a439c2ea96f6b0fe91b898
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>

Reply via email to