settings-doge.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
  5. <localRepository>${user.home}/Downloads/m2-repository</localRepository>
  6. <servers>
  7. <server>
  8. <id>nexus-doge</id>
  9. <username>admin</username>
  10. <password>cv2026</password>
  11. </server>
  12. </servers>
  13. <mirrors>
  14. <mirror>
  15. <id>aliyun</id>
  16. <mirrorOf>*,!spring-milestones,!nexus-doge</mirrorOf>
  17. <url>https://maven.aliyun.com/repository/public</url>
  18. </mirror>
  19. </mirrors>
  20. <profiles>
  21. <profile>
  22. <id>doge</id>
  23. <repositories>
  24. <repository>
  25. <id>nexus-doge</id>
  26. <url>http://43.99.99.42:18081/repository/maven-releases/</url>
  27. <releases><enabled>true</enabled></releases>
  28. <snapshots><enabled>true</enabled></snapshots>
  29. </repository>
  30. <repository>
  31. <id>central</id>
  32. <url>https://maven.aliyun.com/repository/public</url>
  33. <releases><enabled>true</enabled></releases>
  34. <snapshots><enabled>false</enabled></snapshots>
  35. </repository>
  36. <repository>
  37. <id>spring-milestones</id>
  38. <url>https://repo.spring.io/milestone</url>
  39. <releases><enabled>true</enabled></releases>
  40. <snapshots><enabled>false</enabled></snapshots>
  41. </repository>
  42. </repositories>
  43. <pluginRepositories>
  44. <pluginRepository>
  45. <id>nexus-doge</id>
  46. <url>http://43.99.99.42:18081/repository/maven-releases/</url>
  47. <releases><enabled>true</enabled></releases>
  48. <snapshots><enabled>true</enabled></snapshots>
  49. </pluginRepository>
  50. </pluginRepositories>
  51. </profile>
  52. </profiles>
  53. <activeProfiles>
  54. <activeProfile>doge</activeProfile>
  55. </activeProfiles>
  56. </settings>