From e77535a41f3f01862e2f2e5df23a4559d3a95ef0 Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Mon, 23 Apr 2018 14:53:07 -0500 Subject: [PATCH 1/3] Use the full Gradle wrapper distribution instead of just binaries This follows an IntelliJ IDEA recommendation. Having the full distribution allows IntelliJ IDEA to provide contextual help, autocompletion, etc. for Gradle build scripts. The disadvantage, I suppose, is that it imposes a larger download time on first use of "gradlew". --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 16d28051c..e6a30918e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From f7d07fe7572de124f488206e883f305c0b711a64 Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Mon, 23 Apr 2018 14:52:27 -0500 Subject: [PATCH 2/3] Ignore "out" subdirectories into which IntelliJ IDEA puts binaries --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d7b017bc8..5979e6a6e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ /.gradle/ /.settings/org.eclipse.buildship.core.prefs /build/ +com.ibm.wala.*/out/ com.ibm.wala.cast.java.jdt.test/ com.ibm.wala.cast.java.polyglot/lib/ com.ibm.wala.cast.java.test.data/src/JLex/ From 45ea8969ed162405ff8aeabf1860516eed676cfe Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Mon, 23 Apr 2018 14:51:56 -0500 Subject: [PATCH 3/3] Add or ignore several metadata files created by IntelliJ IDEA I decided which to keep and which to ignore by following advice given at and , which in turn influenced . --- .idea/.gitignore | 2 ++ .idea/.name | 1 + .idea/misc.xml | 7 +++++++ .idea/vcs.xml | 6 ++++++ 4 files changed, 16 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..3b866ed2d --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +/gradle.xml +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 000000000..f15c23b30 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +com.ibm.wala \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..12c099175 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file