Skip to content

Commit

Permalink
Merge pull request #11 from itohro/master
Browse files Browse the repository at this point in the history
Support IntelliJ .iml file.
  • Loading branch information
motlin committed May 27, 2016
2 parents 5a924bc + fc906a0 commit b5e3dc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The converter application runs on a directory and recursively scans for the foll
* .java, .groovy, .scala, .kt, .rb, .clj
* .xml (Ant, Ivy, Maven)
* .gradle (Gradle)
* .iml (IntelliJ)

1. Update GS Collections to 7.0
-------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/eclipse/collections/tools/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

public class Converter
{
private static final ImmutableList<String> FILE_SCOPE = Lists.immutable.of(".java", ".xml", "gradle", ".groovy", ".scala", ".kt", ".rb", ".clj");
private static final ImmutableList<String> FILE_SCOPE = Lists.immutable.of(".java", ".xml", "gradle", ".groovy", ".scala", ".kt", ".rb", ".clj", ".iml");
private static final ImmutableMap<String, String> CONVERSION_MAP = Maps.immutable.with(
"com\\.gs\\.collections", "org\\.eclipse\\.collections",
"com\\.goldmansachs", "org\\.eclipse\\.collections",
Expand Down

0 comments on commit b5e3dc6

Please sign in to comment.