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

hongshun pushed a commit to branch exec-plugin
in repository https://gitbox.apache.org/repos/asf/fluss.git

commit 75f13ca41bf1a9a03c0438009ed76c6e2b0c0ce7
Author: Hongshun Wang <[email protected]>
AuthorDate: Tue Dec 2 17:06:10 2025 +0800

    Bump exec-maven-plugin to 3.1.0
---
 fluss-dist/pom.xml | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/fluss-dist/pom.xml b/fluss-dist/pom.xml
index dbc7c2660..152310bce 100644
--- a/fluss-dist/pom.xml
+++ b/fluss-dist/pom.xml
@@ -153,25 +153,24 @@
             </activation>
             <build>
                 <plugins>
+                    <plugin>
+                        <artifactId>maven-clean-plugin</artifactId>
+                        <configuration>
+                            <filesets>
+                                <fileset>
+                                    
<directory>${project.basedir}/..</directory>
+                                    <includes>
+                                        <include>build-target</include>
+                                    </includes>
+                                </fileset>
+                            </filesets>
+                        </configuration>
+                    </plugin>
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
-                        <version>1.5.0</version>
+                        <version>3.1.0</version>
                         <executions>
-                            <execution>
-                                <id>remove-build-target-link</id>
-                                <phase>clean</phase>
-                                <goals>
-                                    <goal>exec</goal>
-                                </goals>
-                                <configuration>
-                                    <executable>rm</executable>
-                                    <arguments>
-                                        <argument>-f</argument>
-                                        
<argument>${project.basedir}/../build-target</argument>
-                                    </arguments>
-                                </configuration>
-                            </execution>
                             <execution>
                                 <id>create-build-target-link</id>
                                 <phase>package</phase>
@@ -187,6 +186,8 @@
                                         </argument>
                                         
<argument>${project.basedir}/../build-target</argument>
                                     </arguments>
+                                    <async>true</async>
+                                    
<asyncDestroyOnShutdown>true</asyncDestroyOnShutdown>
                                 </configuration>
                             </execution>
                         </executions>

Reply via email to