|
1 | | -//version: 1675074449 |
| 1 | +//version: 1675110695 |
2 | 2 | /* |
3 | 3 | DO NOT CHANGE THIS FILE! |
4 | 4 | Also, you may replace this file at any time if there is an update available. |
@@ -66,7 +66,7 @@ plugins { |
66 | 66 | id 'com.diffplug.spotless' version '6.7.2' apply false |
67 | 67 | id 'com.modrinth.minotaur' version '2.+' apply false |
68 | 68 | id 'com.matthewprenger.cursegradle' version '1.4.0' apply false |
69 | | - id 'com.gtnewhorizons.retrofuturagradle' version '1.0.18' |
| 69 | + id 'com.gtnewhorizons.retrofuturagradle' version '1.1.2' |
70 | 70 | } |
71 | 71 | boolean settingsupdated = verifySettingsGradle() |
72 | 72 | settingsupdated = verifyGitAttributes() || settingsupdated |
@@ -166,6 +166,9 @@ pluginManager.withPlugin('org.jetbrains.kotlin.jvm') { |
166 | 166 | "kaptMcLauncherKotlin", |
167 | 167 | "kaptPatchedMcKotlin", |
168 | 168 | "kaptInjectedTagsKotlin", |
| 169 | + "kspMcLauncherKotlin", |
| 170 | + "kspPatchedMcKotlin", |
| 171 | + "kspInjectedTagsKotlin", |
169 | 172 | ] |
170 | 173 | tasks.configureEach { task -> |
171 | 174 | if (task.name in disabledKotlinTaskList) { |
@@ -334,7 +337,7 @@ if (identifiedVersion == versionOverride) { |
334 | 337 | out.style(Style.Failure).text('Override version to ').style(Style.Identifier).text(modVersion).style(Style.Failure).println('!\7') |
335 | 338 | } |
336 | 339 |
|
337 | | -group = modGroup |
| 340 | +group = "com.github.GTNewHorizons" |
338 | 341 | if (project.hasProperty("customArchiveBaseName") && customArchiveBaseName) { |
339 | 342 | archivesBaseName = customArchiveBaseName |
340 | 343 | } else { |
@@ -711,16 +714,6 @@ if (usesShadowedDependencies.toBoolean()) { |
711 | 714 | ext.publishableDevJar = usesShadowedDependencies.toBoolean() ? tasks.shadowJar : tasks.jar |
712 | 715 | ext.publishableObfJar = tasks.reobfJar |
713 | 716 |
|
714 | | -tasks.named('extractForgeUserdev', Copy).configure { efu -> |
715 | | - doLast { |
716 | | - // Fix CoFH-repackaged CCL not finding mappings |
717 | | - project.copy { |
718 | | - from(mcpTasks.userdevDir("conf")) |
719 | | - into(new File(project.buildDir, "unpacked/conf")) |
720 | | - } |
721 | | - } |
722 | | -} |
723 | | - |
724 | 717 | tasks.register('apiJar', Jar) { |
725 | 718 | from(sourceSets.main.allSource) { |
726 | 719 | include modGroupPath + "/" + apiPackagePath + '/**' |
@@ -825,7 +818,7 @@ publishing { |
825 | 818 | artifact apiJar |
826 | 819 | } |
827 | 820 |
|
828 | | - groupId = System.getenv("ARTIFACT_GROUP_ID") ?: "com.github.GTNewHorizons" |
| 821 | + groupId = System.getenv("ARTIFACT_GROUP_ID") ?: project.group |
829 | 822 | artifactId = System.getenv("ARTIFACT_ID") ?: project.name |
830 | 823 | // Using the identified version, not project.version as it has the prepended 1.7.10 |
831 | 824 | version = System.getenv("RELEASE_VERSION") ?: identifiedVersion |
|
0 commit comments