Skip to content

Commit

Permalink
fix neoforge not being enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGravyBoat committed Jun 14, 2024
1 parent f8099e9 commit 899b564
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx4G

mc_version=1.21
enabled_platforms=fabric
enabled_platforms=fabric,neoforge

archives_base_name=resourcefulconfig
maven_group=com.teamresourceful.resourcefulconfig
Expand Down
7 changes: 4 additions & 3 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,23 @@ processResources {

shadowJar {
exclude "fabric.mod.json"
exclude "architectury.common.json"

configurations = [project.configurations.shadowCommon]
archiveAppendix.set "$project.name-$mc_version"
archiveClassifier.set "dev-shadow"
archiveClassifier.set "dev-shadow"
}

remapJar {
input.set shadowJar.archiveFile
dependsOn shadowJar
archiveAppendix.set "$project.name-$mc_version"
archiveClassifier.set null
archiveClassifier.set null
}

jar {
archiveAppendix.set "$project.name-$mc_version"
archiveClassifier.set "dev"
archiveClassifier.set "dev"
}

sourcesJar {
Expand Down

0 comments on commit 899b564

Please sign in to comment.