開發是用的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>