Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Closes #7
  • Loading branch information
ThatGravyBoat committed Jun 24, 2024
1 parent e194d84 commit 4c813f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id "java"
id "com.github.johnrengelman.shadow" version "6.1.0"
id "net.minecraftforge.gradle.forge" version "ddb1eb0"
id "net.minecraftforge.gradle.forge" version "1d22621a6b"
id "org.jetbrains.kotlin.jvm" version "1.5.31"
}

version = "1.0.5"
version = "1.0.6"
group = "tech.thatgravyboat"
archivesBaseName = "RewardClaim"

Expand Down Expand Up @@ -34,7 +34,7 @@ repositories {

dependencies {
//include 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.21'
provided "gg.essential:loader-launchwrapper:1.1.2"
provided "gg.essential:loader-launchwrapper:1.2.2"
implementation "gg.essential:essential-1.8.9-forge:1582"
}

Expand Down Expand Up @@ -68,6 +68,12 @@ shadowJar {
archiveClassifier.set('')
configurations = [project.configurations.provided]
duplicatesStrategy DuplicatesStrategy.EXCLUDE

manifest.attributes(
"ForceLoadAsMod": true,
"ModSide": "CLIENT",
"TweakClass": "gg.essential.loader.stage0.EssentialSetupTweaker"
)
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
eachPlugin {
// If the "net.minecraftforge.gradle.forge" plugin is requested we redirect it to asbyth's ForgeGradle fork
if (requested.id.id == "net.minecraftforge.gradle.forge") {
useModule("com.github.asbyth:ForgeGradle:${requested.version}")
useModule("com.github.Debuggingss:ForgeGradle:${requested.version}")
}
}
}
Expand Down

0 comments on commit 4c813f2

Please sign in to comment.