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

richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d097193 [AURON #1484] Change test-jar dependencies scope to 'test' in 
spark-extension-shims-spark module (#1796)
5d097193 is described below

commit 5d09719359bcd12870b2eec6efc514294ad56f72
Author: cxzl25 <[email protected]>
AuthorDate: Tue Dec 30 19:08:25 2025 +0800

    [AURON #1484] Change test-jar dependencies scope to 'test' in 
spark-extension-shims-spark module (#1796)
    
    # Which issue does this PR close?
    
    Closes #1484
    
    # Rationale for this change
    
    `spark-extension-shims-spark` depends on the test jar of `auron-common`
    but does not declare the test scope. The last released jar packages
    `log4j2.properties`, which may affect the spark log configuration.
    
    # What changes are included in this PR?
    
    # Are there any user-facing changes?
    
    # How was this patch tested?
    local test
---
 spark-extension-shims-spark/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/spark-extension-shims-spark/pom.xml 
b/spark-extension-shims-spark/pom.xml
index 20652d1b..4c75845b 100644
--- a/spark-extension-shims-spark/pom.xml
+++ b/spark-extension-shims-spark/pom.xml
@@ -96,6 +96,7 @@
       <artifactId>auron-common_${scalaVersion}</artifactId>
       <version>${project.version}</version>
       <type>test-jar</type>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.spark</groupId>

Reply via email to