GraphScope icon indicating copy to clipboard operation
GraphScope copied to clipboard

[BUG] for maven 3.81+, it blocks dependencies downloading via http by force.

Open yecol opened this issue 4 years ago • 0 comments

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

yecol avatar Sep 16 '21 08:09 yecol