You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump maven version to 3.9.5 for java11 image.
I am running into issues using Maven 3.8.8, would appreciate if the version could be bumped to 3.9.5
Some dependencies in my Java project(Quarkus) cause issues when trying to retrieve dependencies from corporate mirror of maven central repository. I get 403 Forbidden responses from the server. Maven 3.8.8 uses a class called WagonTransporter which has a conflict with a version of WagonTransporter included in Quarkus. Maven 3.9+ moved to a different class called HttpTransporter. This seemed to fix the problem for me.
I recognized you might have reasons to keep Maven at its current version, any chance of having 2 different java11 images?
Thanks for your consideration.
Hi @hammerface, thanks for opening an issue. Let me bring this up with the team to check if there are any concerns with bumping the Maven version and get back to you.
Hi @hammerface, you can try building your own custom image with configuration you want and passing the image during build (sam build) with --build-image option.
Describe your idea/feature/enhancement
Bump maven version to 3.9.5 for java11 image.
I am running into issues using Maven 3.8.8, would appreciate if the version could be bumped to 3.9.5
Some dependencies in my Java project(Quarkus) cause issues when trying to retrieve dependencies from corporate mirror of maven central repository. I get 403 Forbidden responses from the server. Maven 3.8.8 uses a class called WagonTransporter which has a conflict with a version of WagonTransporter included in Quarkus. Maven 3.9+ moved to a different class called HttpTransporter. This seemed to fix the problem for me.
Link to issue:
quarkusio/quarkus#33220
I recognized you might have reasons to keep Maven at its current version, any chance of having 2 different java11 images?
Thanks for your consideration.
Proposal
In Dockerfile-java11
line 62: replace maven URL with: https://downloads.apache.org/maven/maven-3/3.9.5/binaries/apache-maven-3.9.5-bin.tar.gz
line 65: replace reference to apache-maven-3.8.8 with reference to apache-maven-3.9.5
The text was updated successfully, but these errors were encountered: