使用eclipse执行maven-release-plugin插件发布jar异常问题(.project)(Cannot prepare the release because you have loc

Posted YatHo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用eclipse执行maven-release-plugin插件发布jar异常问题(.project)(Cannot prepare the release because you have loc相关的知识,希望对你有一定的参考价值。

开发是用的eclipse,里面有工程文件.project这种文件,运行release:prepare的时候报异常: 
Cannot prepare the release because you have local modifications 

 

提示你有文件没有提交,正常的文件可以提交,但是这种文件我们得让插件自己过滤掉。 
配置如下: 

<plugin>  
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-release-plugin</artifactId>  
                 <version>2.2.1</version>  
                <configuration>  
                    <tagBase>https://127.0.0.1/svn/maven_svn/tags/</tagBase>  
                    <checkModificationExcludes>  
                        <checkModificationExclude>.project</checkModificationExclude>  
                        <checkModificationExclude>.classpath</checkModificationExclude>  
                    </checkModificationExcludes>  
                </configuration>  
            </plugin>  

  

或者:

plugin>  
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-release-plugin</artifactId>  
                 <version>2.2.1</version>  
                <configuration>  
                    <tagBase>https://127.0.0.1/svn/maven_svn/tags/</tagBase>  
<checkModificationExcludeList>.project,.classpath</checkModificationExcludeList>  
                </configuration>  
            </plugin>  

  



以上是关于使用eclipse执行maven-release-plugin插件发布jar异常问题(.project)(Cannot prepare the release because you have loc的主要内容,如果未能解决你的问题,请参考以下文章

在 Git 中使用 maven-release-plugin

Nexus3将本地jar包添加到仓库

Eclipse:如何使用外部 jar 构建可执行 jar?

使用 VC 编译器在 Eclipse 中创建可执行文件

Eclipse 执行速度比另一台电脑慢

Eclipse 可执行架构类型