常见问题

使用类

Q: 为什么使用 SNAPSHOT 版本拉取不到依赖?

如果需要使用处于研发状态的 SNAPSHOT 版本,有两种方式:1、拉取 Jarslink 仓库代码,本地执行 mvn install。2、在本地 maven setting.xml 文件增加如下 profile 配置:

  1. <profile>
  2. <id>default</id>
  3. <activation>
  4. <activeByDefault>true</activeByDefault>
  5. </activation>
  6. <repositories>
  7. <repository>
  8. <snapshots>
  9. <enabled>true</enabled>
  10. </snapshots>
  11. <id>maven-snapshot</id>
  12. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  13. </repository>
  14. </repositories>
  15. <pluginRepositories>
  16. <pluginRepository>
  17. <snapshots>
  18. <enabled>true</enabled>
  19. </snapshots>
  20. <id>maven-snapshot</id>
  21. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  22. </pluginRepository>
  23. </pluginRepositories>
  24. </profile>