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

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git


The following commit(s) were added to refs/heads/main by this push:
     new b2f6be6f7 fix(java): fix shade janino duplciate entry (#2453)
b2f6be6f7 is described below

commit b2f6be6f7b4c9cde07a4d835b0681205a6a9a87a
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Aug 11 14:05:20 2025 +0800

    fix(java): fix shade janino duplciate entry (#2453)
    
    <!--
    **Thanks for contributing to Fory.**
    
    **If this is your first time opening a PR on fory, you can refer to
    
[CONTRIBUTING.md](https://github.com/apache/fory/blob/main/CONTRIBUTING.md).**
    
    Contribution Checklist
    
    - The **Apache Fory** community has requirements on the naming of pr
    titles. You can also find instructions in
    [CONTRIBUTING.md](https://github.com/apache/fory/blob/main/CONTRIBUTING.md).
    
    - Fory has a strong focus on performance. If the PR you submit will have
    an impact on performance, please benchmark it first and provide the
    benchmark result here.
    -->
    
    ## What does this PR do?
    
    <!-- Describe the purpose of this PR. -->
    
    ## Related issues
    
    <!--
    Is there any related issue? Please attach here.
    
    - #xxxx0
    - #xxxx1
    - #xxxx2
    -->
    
    ## Does this PR introduce any user-facing change?
    
    <!--
    If any user-facing interface changes, please [open an
    issue](https://github.com/apache/fory/issues/new/choose) describing the
    need to do so and update the document if necessary.
    -->
    
    - [ ] Does this PR introduce any public API change?
    - [ ] Does this PR introduce any binary protocol compatibility change?
    
    ## Benchmark
    
    <!--
    When the PR has an impact on performance (if you don't know whether the
    PR will have an impact on performance, you can submit the PR first, and
    if it will have impact on performance, the code reviewer will explain
    it), be sure to attach a benchmark data here.
    -->
---
 ci/tasks/java.py       | 2 +-
 java/benchmark/pom.xml | 2 +-
 java/pom.xml           | 2 +-
 kotlin/pom.xml         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ci/tasks/java.py b/ci/tasks/java.py
index 38d646244..7bb73e50a 100644
--- a/ci/tasks/java.py
+++ b/ci/tasks/java.py
@@ -294,7 +294,7 @@ def run_release():
     
     # Deploy to Maven Central
     logging.info("Deploying to Maven Central")
-    common.exec_cmd("mvn deploy -Dgpg.skip -DskipTests -Papache-release")
+    common.exec_cmd("mvn -T10 -B --no-transfer-progress clean deploy 
-Dgpg.skip -DskipTests -Papache-release")
     
     logging.info("Release to Maven Central completed successfully")
 
diff --git a/java/benchmark/pom.xml b/java/benchmark/pom.xml
index 6276ae206..1a87bfb60 100644
--- a/java/benchmark/pom.xml
+++ b/java/benchmark/pom.xml
@@ -219,7 +219,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <version>2.2</version>
+                <version>3.6.0</version>
                 <executions>
                     <execution>
                         <phase>package</phase>
diff --git a/java/pom.xml b/java/pom.xml
index 454ff0a0f..e1f46f89e 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -180,7 +180,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-shade-plugin</artifactId>
-          <version>3.2.1</version>
+          <version>3.6.0</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
diff --git a/kotlin/pom.xml b/kotlin/pom.xml
index ab64f2e9f..4370a3f64 100644
--- a/kotlin/pom.xml
+++ b/kotlin/pom.xml
@@ -103,7 +103,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-shade-plugin</artifactId>
-                    <version>3.2.1</version>
+                    <version>3.6.0</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>


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

Reply via email to