From 33d33a596c7b3ba97db8c4e7c08065ac01ea449a Mon Sep 17 00:00:00 2001 From: SLMS Development Team Date: Sat, 29 Nov 2025 21:24:05 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=80=E5=8C=96Jenkinsfile=EF=BC=9A=E7=A7=BB?= =?UTF-8?q?=E9=99=A4fatJar/bootJar=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f425ed0..1789ca2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ pipeline { } steps { echo '>>> 构建 CLI 模块' - bat 'gradlew.bat :cli:build :cli:fatJar -x test --no-daemon' + bat 'gradlew.bat :cli:build -x test --no-daemon' } } @@ -62,7 +62,7 @@ pipeline { } steps { echo '>>> 构建 GUI 模块' - bat 'gradlew.bat :gui:build :gui:fatJar -x test --no-daemon' + bat 'gradlew.bat :gui:build -x test --no-daemon' } } @@ -76,7 +76,7 @@ pipeline { } steps { echo '>>> 构建 Backend 模块' - bat 'gradlew.bat :backend:build :backend:bootJar -x test --no-daemon' + bat 'gradlew.bat :backend:build -x test --no-daemon' } }