-
Bug
-
Resolution: Fixed
-
Critical
-
None
-
Jenkins 2.84
JDK 1.8.0_121-b13
I've been trying to figure this for a while now and don't seem to understand what's wrong nor why.
We're trying to build a java project in a Docker container using `withMaven` and a configuration saved in `Manage Jenkins -> Managed Files -> Maven settings.xml`. This configuration has been working fine for months but yesterday it just stopped. Our builds are depending on artifacts which are deployed to a local repository and therefore all of our builds are now failing.
I've tried logging into the docker container while it's running and checking `~/.m2/settings.xml` but the file is not there. Not sure why it's not being copied, but it's not a permission issue as far as I can tell.
Our pipeline is quite trivial:
pipeline { agent { docker { image 'opensuse-custom-image-with-jdk-and-maven:latest' } } options { timeout(time: 2, unit: 'HOURS') disableConcurrentBuilds() skipDefaultCheckout() } stages { stage('Building...') { steps { withMaven(maven: 'maven-3.3.9', mavenSettingsConfig: 'redacted') { sh "mvn -U clean install -Dmaven.test.failure.ignore=true" } } } } }
- duplicates
-
JENKINS-47823 withMaven fails to inject Maven settings files with docker-pipeline 1.14
-
- Closed
-
- is duplicated by
-
JENKINS-47809 Docker container does not read maven settings.xml after updating
-
- Resolved
-
- relates to
-
JENKINS-48050 Replace Declarative Docker agent directive with new implementation
-
- In Progress
-
[JENKINS-47805] withMaven doesn't copy settings.xml to Docker container
Component/s | New: docker-workflow-plugin [ 20625 ] | |
Component/s | Original: pipeline-maven-plugin [ 21669 ] |
Assignee | Original: Alvaro Lobato [ alobato ] | New: Cyrille Le Clerc [ cleclerc ] |
Component/s | New: pipeline-maven-plugin [ 21669 ] |
Link |
New:
This issue duplicates |
Link |
New:
This issue is duplicated by |
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: In Progress [ 3 ] | New: Closed [ 6 ] |
Link | New: This issue relates to JENKINS-48050 [ JENKINS-48050 ] |