diff options
author | Léa Gris <lea.gris@noiraude.net> | 2021-05-22 23:19:31 +0200 |
---|---|---|
committer | DreamMasterXXL <dream-master@gmx.net> | 2021-05-22 23:31:09 +0200 |
commit | e1e18b69fcec10d389e40934b19737854ca06cbc (patch) | |
tree | 01ba2077db0cc7552dff2180a96b57420abca416 | |
parent | 1348c9b6c919607847d714929ecfa826d3903223 (diff) | |
download | GT5-Unofficial-e1e18b69fcec10d389e40934b19737854ca06cbc.tar.gz GT5-Unofficial-e1e18b69fcec10d389e40934b19737854ca06cbc.tar.bz2 GT5-Unofficial-e1e18b69fcec10d389e40934b19737854ca06cbc.zip |
fix(gradle): various gradle and gitignore fixes
make gradlew wrapper executable
update the grgit gradle pluggin
correctly ignore IDEA project files in .gitignore
(cherry picked from commit 8514fdddf0d66ec334a0ee7c1c3ae8ae389ab193)
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | build.gradle | 4 | ||||
-rwxr-xr-x[-rw-r--r--] | gradlew | 0 |
3 files changed, 5 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 408854fdd0..3aefee90dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ *.bat .gradle/ -Good-Generator.iml -Good-Generator.ipr -Good-Generator.iws .idea/ out/ *.iml +*.ipr +*.iws diff --git a/build.gradle b/build.gradle index 4c1ab145a5..b1299babfb 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,9 @@ buildscript { } plugins { - id("org.ajoberstar.grgit") version("3.1.1") + // project.grgit is not available and the repository we're working in is not + // interacted with: + id 'org.ajoberstar.grgit' version '4.0.2' apply false } apply plugin: 'forge' |