当前位置:   article > 正文

SpringBoot的pom文件详解_springboot标签怎么用

springboot标签怎么用

一、repositories标签

1、作用

       配置maven项目的远程仓库

2、示例

  1. <repositories>
  2.         <repository>
  3.             <id>nexus</id>
  4.             <name>Nexus Repository</name>
  5.             <url>远程仓库地址</url>
  6.             <releases>
  7.                 <enabled>true</enabled>
  8.             </releases>
  9.             <snapshots>
  10.                 <enabled>true</enabled>  <!--snapshots默认是关闭的,需要开启  -->
  11.             </snapshots>
  12.         </repository>
  13. </repositories>

二、pluginRepositories标签

1、作用

        配置maven插件的远程仓库

2、示例

  1. <pluginRepositories>
  2.         <pluginRepository>
  3.             <id>nexus</id>
  4.             <name>Team Nexus Repository</name>
  5.             <url>远程仓库地址</url>
  6.         </pluginRepository>
  7. </pluginRepositories>

 

 

        

     

 

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

闽ICP备14008679号