How to Disable the maven-default-http-blocker gracefully
3.2k words
27 mins
views
How to Disable the maven-default-http-blocker gracefully
Recently, after upgrading Maven to 3.8.1, I always encountered issues during the mvn compilation process, where it failed to pull dependencies. The error message was as follows:
Could not validate integrity of download from http://0.0.0.0/...
By searching for the keyword maven-default-http-blocker, relevant information can be found.
In short, downloading dependencies using the HTTP protocol may lead to man-in-the-middle attacks. For example, you might intend to download the nacos-client, but malicious code could be inserted into the downloaded result. If a developer then runs the code, hackers could gain control of the developer’s computer.
Therefore, Maven 3.8.1 has blocked all Maven repositories using the HTTP protocol.
The problem is that in daily development, we often use internal Maven repositories within the company. These repositories generally use the HTTP protocol. Since Maven 3.8.1 blocks the HTTP protocol, it results in the error mentioned at the beginning.
After some research, it was found that it can be disabled as follows:
Add a mirror with the same name in ~/.m2/settings.xml and specify that this mirror does not apply to any repositories.