当前位置:   article > 正文

maven 配置私服

maven 配置私服
  1. 配置本地mavend的conf setting.xml文件
  2. <servers>
  3. <!--发行稳定库-->
  4. <server>
  5. <id>maven-release</id>
  6. <username>admin</username>
  7. <password>admin</password>
  8. </server>
  9. <!--快照开发库-->
  10. <server>
  11. <id>maven-snapshots</id>
  12. <username>admin</username>
  13. <password>admin</password>
  14. </server>
  15. </servers>
  16. <!--私服组地址(这里阿里的)-->
  17. <mirrors>
  18. <mirror>
  19. <id>nexus-aliyun</id>
  20. <name>Nexus aliyun</name>
  21. <mirrorOf>central</mirrorOf>
  22. <url>https://maven.aliyun.com/repository/public</url>
  23. </mirror>
  24. </mirrors>
  25. <settings>
  26. <profile>
  27. <id>allow-snapshots</id>
  28. <activation>
  29. <activeByDefault>true</activeByDefault>
  30. </activation>
  31. <repositories>
  32. <repository>
  33. <id>nexus-aliyun</id>
  34. <url>https://maven.aliyun.com/repository/public</url>
  35. <releases>
  36. <enabled>true</enabled>
  37. </releases>
  38. <snapshots>
  39. <enabled>true</enabled>
  40. </snapshots>
  41. </repository>
  42. </repositories>
  43. </profile>
  44. </settings>

 pom文件

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

闽ICP备14008679号