GraphScope
GraphScope copied to clipboard
[BUG] for maven 3.81+, it blocks dependencies downloading via http by force.
It seems we are trying download jars from http://repository.apache.org, which is blocked by the latest mvn.
maybe we need to specify its https address for this repo? sth. like this in the root pom.
<project>
...
<repositories>
<repository>
<id>my-repo1</id>
<name>your custom repo</name>
<url>http://jarsm2.dyndns.dk</url>
</repository>
<repository>
<id>my-repo2</id>
<name>your custom repo</name>
<url>http://jarsm2.dyndns.dk</url>
</repository>
</repositories>
...
</project>
ref: https://maven.apache.org/guides/mini/guide-multiple-repositories.html