Maven发布源代码到私服

  1. 配置发布目标远程仓库

        
            nexus-release
            http://xxxxxx/repository/maven-releases/
        
        
            nexus-snapshot
            http://xxxx/repository/maven-snapshots/
        
    
  1. 配置发布源代码插件

    org.apache.maven.plugins
    maven-source-plugin
    
        
            attach-sources
            
                jar
            
        
    

  1. 执行发布命令
mvn clean deploy

你可能感兴趣的:(Maven发布源代码到私服)