maven 发布到自己的nexus时注意事项

注意:确保maven安装成功
确保nexus安装成功
确保项目运行成功

1.下方都需运行成功才能发布成功

maven 发布到自己的nexus时注意事项_第1张图片

2.site发生错误,一般是pom文件中缺少相应的文件,查看错误日志,看缺少什么文件

发布成功的pom界面应具有的文件

  
    MvnHello
    
      
        
          maven-clean-plugin
          3.1.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.8.0
        
        
          maven-surefire-plugin
          2.22.1
        
        
          maven-war-plugin
          3.2.2
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
        
          org.apache.tomcat.maven
          tomcat7-maven-plugin
          2.2
          
            /
            8080
            UTF-8
            tomcat7
          
        
        
        
          org.eclipse.jetty
          jetty-maven-plugin
          9.2.1.v20140609
          
            
              
              /
            
            
              
              9090
            
          
        
        
          maven-project-info-reports-plugin
          2.7
        
        
          org.apache.maven.plugins
          maven-site-plugin
          3.3
          
            zh_CN
          
        
      

    

  

3.deploy发布错误

由于缺少下面文件,或下面文件配置错误

 
    
      releases
      Nexus Release Repository
      http://localhost:8081/repository/maven-releases
    
    
      snapshots
      Nexus Snapshot Repository
      http://localhost:8081/repository/maven-snapshots
    
  

配置setting.xml文件中的id与上方 和 的id要相对应


        releases
        admin
        admin123
    
    
        snapshots
        admin
        admin123
    

你可能感兴趣的:(maven)