diff options
-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' |