diff options
| author | Martin Robertz <dream-master@gmx.net> | 2023-04-19 19:17:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-19 19:17:49 +0200 |
| commit | c7edae3460915e0a3b9173d9cf4b188f1b0a91a7 (patch) | |
| tree | 9a0c0c9506e15ed5401a01746c49dbe48ca1e625 | |
| parent | 8217c7f13cbdfa7341773ae9725b8e650392b32d (diff) | |
| parent | 0428dcaa50cbaac66f78f184142c7ad72ca420b2 (diff) | |
| download | GT5-Unofficial-c7edae3460915e0a3b9173d9cf4b188f1b0a91a7.tar.gz GT5-Unofficial-c7edae3460915e0a3b9173d9cf4b188f1b0a91a7.tar.bz2 GT5-Unofficial-c7edae3460915e0a3b9173d9cf4b188f1b0a91a7.zip | |
Merge pull request #190 from GTNewHorizons/cleanup
Cleanup
100 files changed, 548 insertions, 804 deletions
diff --git a/build.gradle b/build.gradle index 927ed20fdb..f82d369676 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1678003329 +//version: 1681680742 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -65,22 +65,23 @@ plugins { id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false id 'org.jetbrains.kotlin.kapt' version '1.8.0' apply false id 'com.google.devtools.ksp' version '1.8.0-1.0.9' apply false - id 'org.ajoberstar.grgit' version '4.1.1' // 4.1.1 is the last jvm8 supporting version ,unused, available for addon.gradle + id 'org.ajoberstar.grgit' version '4.1.1' // 4.1.1 is the last jvm8 supporting version, unused, available for addon.gradle id 'com.github.johnrengelman.shadow' version '7.1.2' apply false - id 'com.palantir.git-version' version '0.13.0' apply false // 0.13.0 is the last jvm8 supporting version + id 'com.palantir.git-version' version '3.0.0' apply false id 'de.undercouch.download' version '5.3.0' id 'com.github.gmazzo.buildconfig' version '3.1.0' apply false // Unused, available for addon.gradle id 'com.diffplug.spotless' version '6.7.2' apply false id 'com.modrinth.minotaur' version '2.+' apply false id 'com.matthewprenger.cursegradle' version '1.4.0' apply false - id 'com.gtnewhorizons.retrofuturagradle' version '1.2.3' + id 'com.gtnewhorizons.retrofuturagradle' version '1.2.5' } boolean settingsupdated = verifySettingsGradle() settingsupdated = verifyGitAttributes() || settingsupdated if (settingsupdated) throw new GradleException("Settings has been updated, please re-run task.") -if (project.file('.git/HEAD').isFile()) { +// In submodules, .git is a file pointing to the real git dir +if (project.file('.git/HEAD').isFile() || project.file('.git').isFile()) { apply plugin: 'com.palantir.git-version' } @@ -160,6 +161,14 @@ java { } } |
