My project use maven wrapper
$ ./mvnw -v
Apache Maven 3.8.6 (84538c9988a25aec085021c365c560670ad80f63)
Maven home: /home/xxx/.m2/wrapper/dists/apache-maven-3.8.6-bin/67568434/apache-maven-3.8.6
Java version: 1.8.0_332, vendor: Temurin, runtime: /home/xxx/.jdks/temurin-1.8.0/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.19.0-26-generic", arch: "amd64", family: "unix"
but when I type ./mvnw package
,I got
Failed to execute goal on project insight-scheduler: Could not resolve dependencies for project io.xxx:insight-s:jar:1.0-SNAPSHOT: Failed to collect dependencies at io.xxx.g:g-client:jar:2.0: Failed to read artifact descriptor for io.xxx.g:g-client:jar:2.0: Could not transfer artifact io.xxx.g:g-client:pom:2.0 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [priv-xxx-libs-release
How do I
I first thought it was a private repository authentication problem, but then I found this is the new version of maven does not allow http by default, you can configure it inside settings.xml, but I used the maven wrapper, this configuration did not take effect. What do I need to do