zoukankan      html  css  js  c++  java
  • 使用eclipse执行maven-release-plugin插件发布jar异常问题(.project)(Cannot prepare the release because you have local modifications )

    开发是用的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>  
    

      

  • 相关阅读:
    LinuxIP乱码
    APP前置代码脚本等基础操作及安装python库
    XP定位(APP元素定位)
    关联函数应用
    命令查看当前运行APP的包名和Activity
    android智能手机如何查看APK包名
    接口代码(requests库安装)
    python不能运行
    语音接口参数转换
    接口图片参数化
  • 原文地址:https://www.cnblogs.com/YatHo/p/8081142.html
Copyright © 2011-2022 走看看