Jenkinsfile 및 Gradle 제거/최적화:
eapim-admin CI / build (push) Has been cancelled

- EXT_LIB_DIR 환경변수 및 관련 빌드 파라미터 제거
- build.gradle: 불필요 코드/설정 제거 및 의존성 최적화
This commit is contained in:
Rinjae
2026-06-30 11:29:02 +09:00
parent 89c4b89a71
commit 235f4b67b3
4 changed files with 65 additions and 45 deletions
Vendored
+1 -2
View File
@@ -19,7 +19,6 @@ pipeline {
CATALINA_HOME = '/prod/eapim/apache-tomcat-9.0.116'
CATALINA_PID = '/prod/eapim/adminportal/temp/catalina.pid'
DEPLOY_HTTP_PORT = '39120'
EXT_LIB_DIR = "${CATALINA_HOME}/lib"
}
stages {
@@ -79,7 +78,7 @@ pipeline {
stage('Build WAR') {
steps {
sh 'gradle clean build -x test --no-daemon -PextLibDir=$EXT_LIB_DIR'
sh 'gradle clean build -x test --no-daemon'
}
post {
success {