laurarue commented on issue #2471:
URL: https://github.com/apache/maven/issues/2471#issuecomment-2966476330

   I've change my Dockerfile so maven can be downloaded directly instead of 
doing it with SDKman and it seems that works properly with the "good" URL of 
maven (thanks for your help @cstamas ).
   
   ```
   RUN mkdir -p /root/.sdkman/candidates/maven/3.9.9 && \
       curl -fsSL 
https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
 -o /tmp/maven.zip && \
       unzip -q /tmp/maven.zip -d /tmp && \
       mv /tmp/apache-maven-3.9.9/* /root/.sdkman/candidates/maven/3.9.9/ && \
       rm -rf /tmp/maven.zip /tmp/apache-maven-3.9.9 && \
       ln -s /root/.sdkman/candidates/maven/3.9.9 
/root/.sdkman/candidates/maven/current
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to