settings.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
  4. http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <localRepository/>
  6. <interactiveMode/>
  7. <usePluginRegistry/>
  8. <offline/>
  9. <pluginGroups/>
  10. <servers/>
  11. <mirrors>
  12. <mirror>
  13. <id>aliyunmaven</id>
  14. <mirrorOf>central</mirrorOf>
  15. <name>阿里云公共仓库</name>
  16. <url>https://maven.aliyun.com/repository/central</url>
  17. </mirror>
  18. <mirror>
  19. <id>aliyunmaven</id>
  20. <mirrorOf>apache snapshots</mirrorOf>
  21. <name>阿里云阿帕奇仓库</name>
  22. <url>https://maven.aliyun.com/repository/apache-snapshots</url>
  23. </mirror>
  24. </mirrors>
  25. <proxies/>
  26. <activeProfiles/>
  27. <profiles>
  28. <profile>
  29. <repositories>
  30. <repository>
  31. <id>aliyunmaven</id>
  32. <name>aliyunmaven</name>
  33. <url>https://maven.aliyun.com/repository/public</url>
  34. <layout>default</layout>
  35. <releases>
  36. <enabled>true</enabled>
  37. </releases>
  38. <snapshots>
  39. <enabled>true</enabled>
  40. </snapshots>
  41. </repository>
  42. <repository>
  43. <id>MavenCentral</id>
  44. <url>http://repo1.maven.org/maven2/</url>
  45. </repository>
  46. <repository>
  47. <id>aliyunmavenApache</id>
  48. <url>https://maven.aliyun.com/repository/apache-snapshots</url>
  49. </repository>
  50. </repositories>
  51. </profile>
  52. </profiles>
  53. </settings>