当前位置:   article > 正文

国内maven仓库镜像地址_maven国内镜像仓库

maven国内镜像仓库

    阿里云:http://maven.aliyun.com/

    中央仓库:https://repo1.maven.org/maven2/

    网易:http://maven.netease.com/repository/public/

    华为云:https://repo.huaweicloud.com/repository/maven/

    tencent:https://mirrors.cloud.tencent.com/repository/maven/

    中国科技大学:http://mirrors.ustc.edu.cn/maven/maven2/

    南京大学:http://maven.nju.edu.cn/repository/

    清华大学:https://repo.maven.apache.org/maven2/

    北京理工大学:http://mirror.bit.edu.cn/maven/

    东软信息学院:https://mirrors.neusoft.edu.cn/maven2/

    中国科学院开源协会:http://maven.opencas.cn/maven/

    北京交通大学:http://maven.bjtu.edu.cn/maven2/
 

  1. <mirrors>
  2. <mirror>
  3. <id>aliyun</id>
  4. <url>http://maven.aliyun.com/</url>
  5. <mirrorOf>central</mirrorOf>
  6. </mirror>
  7. <mirror>
  8. <id>central</id>
  9. <url>https://repo1.maven.org/maven2/</url>
  10. <mirrorOf>central</mirrorOf>
  11. </mirror>
  12. <mirror>
  13. <id>netease</id>
  14. <url>http://maven.netease.com/repository/public/</url>
  15. <mirrorOf>central</mirrorOf>
  16. </mirror>
  17. <mirror>
  18. <id>huaweicloud</id>
  19. <url>https://repo.huaweicloud.com/repository/maven/</url>
  20. <mirrorOf>central</mirrorOf>
  21. </mirror>
  22. <mirror>
  23. <id>tencent</id>
  24. <url>https://mirrors.cloud.tencent.com/repository/maven/</url>
  25. <mirrorOf>central</mirrorOf>
  26. </mirror>
  27. <mirror>
  28. <id>ustc</id>
  29. <url>http://mirrors.ustc.edu.cn/maven/maven2/</url>
  30. <mirrorOf>central</mirrorOf>
  31. </mirror>
  32. <mirror>
  33. <id>nju</id>
  34. <url>http://maven.nju.edu.cn/repository/</url>
  35. <mirrorOf>central</mirrorOf>
  36. </mirror>
  37. <mirror>
  38. <id>tsinghua</id>
  39. <url>https://repo.maven.apache.org/maven2/</url>
  40. <mirrorOf>central</mirrorOf>
  41. </mirror>
  42. <mirror>
  43. <id>bit</id>
  44. <url>http://mirror.bit.edu.cn/maven/</url>
  45. <mirrorOf>central</mirrorOf>
  46. </mirror>
  47. <mirror>
  48. <id>neusoft</id>
  49. <url>https://mirrors.neusoft.edu.cn/maven2/</url>
  50. <mirrorOf>central</mirrorOf>
  51. </mirror>
  52. <mirror>
  53. <id>opencas</id>
  54. <url>http://maven.opencas.cn/maven/</url>
  55. <mirrorOf>central</mirrorOf>
  56. </mirror>
  57. <mirror>
  58. <id>bjtu</id>
  59. <url>http://maven.bjtu.edu.cn/maven2/</url>
  60. <mirrorOf>central</mirrorOf>
  61. </mirror>
  62. </mirrors>

常用maven:

  1. <!-- JavaFX -->
  2. <!-- dependency 配置某一具体依赖关系 -->
  3. <dependency>
  4. <!-- 依赖关系的坐标信息 -->
  5. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-fxml -->
  6. <groupId>org.openjfx</groupId>
  7. <artifactId>javafx-fxml</artifactId>
  8. <version>17.0.2</version>
  9. </dependency>
  10. <dependency>
  11. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
  12. <groupId>org.openjfx</groupId>
  13. <artifactId>javafx-controls</artifactId>
  14. <version>17.0.2</version>
  15. </dependency>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/article/detail/45293
推荐阅读
  

闽ICP备14008679号