구성 환경 nexus repository maven jib sshpublisher plugin pipeline { agent any environment { // Nexus Repository credentials (use Jenkins credentials binding) NEXUS_USERNAME = credentials('nexus-username') NEXUS_PASSWORD = credentials('nexus-password') } stages { stage('Build') { steps { script { // Build the Maven project and push the Docker image to Nexus Repository sh 'mvn clean install' // Extrac..