Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Forge 1.21 not Building Properly #43

Merged
merged 10 commits into from
Sep 5, 2024
12 changes: 1 addition & 11 deletions Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,11 @@ version = mod_version
group = mod_group_id

repositories {
maven {
name = 'GeckoLib'
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
content {
includeGroupByRegex("software\\.bernie.*")
includeGroup("com.eliotlash.mclib")
}
}
mavenLocal()
maven {
url "https://cursemaven.com"
}
mavenCentral()
mavenLocal()
}

base {
Expand Down Expand Up @@ -115,8 +107,6 @@ tasks.named('jar', Jar).configure {
'Implementation-Vendor' : mod_authors
])
}

finalizedBy 'reobfJar'
}

tasks.withType(JavaCompile).configureEach {
Expand Down
Loading