简化Jenkinsfile:移除fatJar/bootJar任务

main
SLMS Development Team 4 months ago
parent e97e14e5cd
commit 33d33a596c

6
Jenkinsfile vendored

@ -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'
}
}

Loading…
Cancel
Save