Maven 3.0's “mvn release:perform” doesn't like a pom.xml that isn't in its git repo's root directory

后端 未结 3 1761
孤城傲影
孤城傲影 2021-02-08 15:46

I have a question about Maven, the maven-release-plugin, git integration, pom.xml\'s, and having pom.xml\'s in subdirectories of the repo\'s local copy rather than in the root.<

3条回答
  •  礼貌的吻别
    2021-02-08 16:31

    This should do the trick:

    
        org.apache.maven.plugins
        maven-release-plugin
        2.3.2
        
            
                default
                
                    perform
                
                
                    your_path/your_pom.xml
                
            
        
    
    

提交回复
热议问题