You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2019/08/28 04:33:42 UTC

[lucene-solr] branch jira/SOLR-13452_gradle_5 updated: SOLR-13452: Don't copy IDEA workspace.iml (and instead use workspacec settings generated by Gradle IDEA plugin).

This is an automated email from the ASF dual-hosted git repository.

tomoko pushed a commit to branch jira/SOLR-13452_gradle_5
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/SOLR-13452_gradle_5 by this push:
     new e5c992e  SOLR-13452: Don't copy IDEA workspace.iml (and instead use workspacec settings generated by Gradle IDEA plugin).
e5c992e is described below

commit e5c992ebaf315a9f3ec856622d0024e30cffd4bf
Author: Tomoko Uchida <to...@apache.org>
AuthorDate: Wed Aug 28 13:32:55 2019 +0900

    SOLR-13452: Don't copy IDEA workspace.iml (and instead use workspacec settings generated by Gradle IDEA plugin).
---
 buildSrc/ide/idea.gradle | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/buildSrc/ide/idea.gradle b/buildSrc/ide/idea.gradle
index 1b2d9ac..2ef324a 100644
--- a/buildSrc/ide/idea.gradle
+++ b/buildSrc/ide/idea.gradle
@@ -27,7 +27,8 @@ idea {
                 copy {
                     from file("${rootProjectDir}/dev-tools/idea/.idea")
                     into file("${rootProjectDir}/.idea")
-                    exclude { details -> details.file.name == "libraries"}
+                    exclude { details -> details.file.name == "libraries" }
+                    exclude { details -> details.file.name == "workspace.xml" }
                 }
                 copy {
                     from file("${rootProjectDir}/dev-tools/idea/parent.iml")