我尝试使用管道脚本,直到最后一步。
管道脚本是以下代码
node{
stage ('Build') {
git url: 'https://xxx@bitbucket.org/xxx/01-eureka.git'
withMaven(
// Maven installation declared in the Jenkins "Global Tool Configuration"
maven: 'M3',
// Maven settings.xml file defined with the Jenkins Config File Provider Plugin
// Maven settings and global settings can also be defined in Jenkins Global Tools Configuration
mavenSettingsConfig: 'my-maven-settings',
mavenLocalRepo: '.repository') {
// Run the maven build
sh "mvn clean install"
} // withMaven will discover the generated Maven artifacts, JUnit Surefire & FailSafe & FindBugs reports...
}
}
我已经配置了Maven和Java。
我不知道最后一步的错误,我更新了所有代码。
答案 0 :(得分:0)
我不完全像您的ENV,但是首先,您应该检查您的Jenkins工作区文件夹Jenkins \ workspace \ docker-app,以查看git clone是否按预期工作
如果存在源代码,请手动运行maven命令以查看Maven是否正确找到pom.xml