settings.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <pluginGroups />
  6. <proxies />
  7. <servers />
  8. <localRepository>/root/.m2/repository</localRepository>
  9. <mirrors>
  10. <mirror>
  11. <id>alimaven</id>
  12. <mirrorOf>central</mirrorOf>
  13. <name>aliyun maven</name>
  14. <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
  15. </mirror>
  16. <mirror>
  17. <id>alimaven</id>
  18. <name>aliyun maven</name>
  19. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  20. <mirrorOf>central</mirrorOf>
  21. </mirror>
  22. <mirror>
  23. <id>central</id>
  24. <name>Maven Repository Switchboard</name>
  25. <url>http://repo1.maven.org/maven2/</url>
  26. <mirrorOf>central</mirrorOf>
  27. </mirror>
  28. <mirror>
  29. <id>repo2</id>
  30. <mirrorOf>central</mirrorOf>
  31. <name>Human Readable Name for this Mirror.</name>
  32. <url>http://repo2.maven.org/maven2/</url>
  33. </mirror>
  34. <mirror>
  35. <id>ibiblio</id>
  36. <mirrorOf>central</mirrorOf>
  37. <name>Human Readable Name for this Mirror.</name>
  38. <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
  39. </mirror>
  40. <mirror>
  41. <id>jboss-public-repository-group</id>
  42. <mirrorOf>central</mirrorOf>
  43. <name>JBoss Public Repository Group</name>
  44. <url>http://repository.jboss.org/nexus/content/groups/public</url>
  45. </mirror>
  46. <mirror>
  47. <id>google-maven-central</id>
  48. <name>Google Maven Central</name>
  49. <url>https://maven-central.storage.googleapis.com
  50. </url>
  51. <mirrorOf>central</mirrorOf>
  52. </mirror>
  53. <!-- 中央仓库在中国的镜像 -->
  54. <mirror>
  55. <id>maven.net.cn</id>
  56. <name>oneof the central mirrors in china</name>
  57. <url>http://maven.net.cn/content/groups/public/</url>
  58. <mirrorOf>central</mirrorOf>
  59. </mirror>
  60. </mirrors>
  61. <profiles>
  62. <profile>
  63. <id>boundlessgeo</id>
  64. <repositories>
  65. <repository>
  66. <id>boundlessgeo</id>
  67. <url>https://repo.boundlessgeo.com/main/</url>
  68. <releases>
  69. <enabled>true</enabled>
  70. </releases>
  71. <snapshots>
  72. <enabled>true</enabled>
  73. <updatePolicy>always</updatePolicy>
  74. </snapshots>
  75. </repository>
  76. </repositories>
  77. </profile>
  78. <profile>
  79. <id>aliyun</id>
  80. <repositories>
  81. <repository>
  82. <id>aliyun</id>
  83. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  84. <releases>
  85. <enabled>true</enabled>
  86. </releases>
  87. <snapshots>
  88. <enabled>true</enabled>
  89. <updatePolicy>always</updatePolicy>
  90. </snapshots>
  91. </repository>
  92. </repositories>
  93. </profile>
  94. <profile>
  95. <id>central-repo1</id>
  96. <repositories>
  97. <repository>
  98. <id>central-repo1</id>
  99. <url>https://repo1.maven.org/maven2/</url>
  100. <releases>
  101. <enabled>true</enabled>
  102. </releases>
  103. <snapshots>
  104. <enabled>true</enabled>
  105. <updatePolicy>always</updatePolicy>
  106. </snapshots>
  107. </repository>
  108. </repositories>
  109. </profile>
  110. <profile>
  111. <id>maven-central</id>
  112. <repositories>
  113. <repository>
  114. <id>maven-central</id>
  115. <url>http://central.maven.org/maven2/</url>
  116. <releases>
  117. <enabled>true</enabled>
  118. </releases>
  119. <snapshots>
  120. <enabled>true</enabled>
  121. <updatePolicy>always</updatePolicy>
  122. </snapshots>
  123. </repository>
  124. </repositories>
  125. </profile>
  126. </profiles>
  127. <activeProfiles>
  128. <!-- <activeProfile>boundlessgeo</activeProfile> -->
  129. <activeProfile>aliyun</activeProfile>
  130. <activeProfile>maven-central</activeProfile>
  131. <activeProfile>central-repo1</activeProfile>
  132. </activeProfiles>
  133. </settings>