Guillaume Nodet

Results 255 comments of Guillaume Nodet

@manozd can you paste the full output : installation + running. Also make sure you install the version matching your architecture to have the native client.

@manozd After the unzip, the `/home/jenkins/mvnd-0.7.1-linux-amd64/bin/mvnd` command will only work if the user is `jenkins` or if you `cd /home/jenkins` before. Try with `./mvnd-0.7.1-linux-amd64/bin/mvnd` as indicated in the unzip command...

This may just be missing glibc on alpine. You need to install the `gcompact` package. ``` ➜ tmp docker run --rm -it --user root jenkins/inbound-agent:latest-alpine-jdk11 bash 8ba2826b251f:/home/jenkins# apk add gcompat...

On Alpine Linux, `glibc` needs to be installed for `mvnd` to work. This can be done using `apk add gcompat`. This actually duplicates #642 .

This is a maven resolver bug. It seems similar to https://github.com/takari/takari-local-repository/issues/6 @cstamas ?

Resurrecting the previous IPC SyncContext could be an idea, see https://issues.apache.org/jira/browse/MRESOLVER-342 As a short term improvement, we could also detect and log a WARNING, as mvnd uses the file lock...

A similar problem can easily be reproduced in maven master: ``` > cd maven-settings > mvn install ``` ``` [INFO] --- japicmp:0.17.2:cmp (default) @ maven-settings --- [WARNING] File 'maven-settings/target/classes/org/apache/maven/settings/WrapperList.class' is...

@rmannibucau it would be nice if you could build this branch and see if this reproduces your actual problem. A small reproducer project would be even better !

Wouldn't it be better to add the cause when the project is banned rather than trying to reconstruct it later ? I wonder if we should enhance the [`blacklist()` method](https://github.com/apache/maven/blob/0b3246381d12e69deef63888d0db274fb49c6697/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorBuildStatus.java#L49)...

The code looks good. However, what's the real use case for that ? It seems actually unrelated to MNG-5235, in a sense that the behaviour on this project is not...