From 8514fdddf0d66ec334a0ee7c1c3ae8ae389ab193 Mon Sep 17 00:00:00 2001 From: Léa Gris Date: Sat, 22 May 2021 23:19:31 +0200 Subject: fix(gradle): various gradle and gitignore fixes make gradlew wrapper executable update the grgit gradle pluggin correctly ignore IDEA project files in .gitignore --- .gitignore | 5 ++--- build.gradle | 4 +++- gradlew | 0 3 files changed, 5 insertions(+), 4 deletions(-) mode change 100644 => 100755 gradlew 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' diff --git a/gradlew b/gradlew old mode 100644 new mode 100755 -- cgit