Skip to content

Commit 8635455

Browse files
Update MDK with new output from mod generator (#12)
* Update MDK with new output from mod generator * Update MDK with new output from mod generator * Update MDK with new output from mod generator * Update MDK with new output from mod generator * Update MDK with new output from mod generator --------- Co-authored-by: NeoForge MDK Automation <173375039+neoforge-mdk-automation[bot]@users.noreply.github.com>
1 parent f1f88a2 commit 8635455

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java-library'
33
id 'maven-publish'
4-
id 'net.neoforged.gradle.userdev' version '7.1.13'
4+
id 'net.neoforged.gradle.userdev' version '7.1.17'
55
}
66

77
tasks.named('wrapper', Wrapper).configure {
@@ -132,8 +132,6 @@ tasks.withType(ProcessResources).configureEach {
132132
mod_name : mod_name,
133133
mod_license : mod_license,
134134
mod_version : mod_version,
135-
mod_authors : mod_authors,
136-
mod_description : mod_description
137135
]
138136
inputs.properties replaceProperties
139137

gradle.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,3 @@ mod_version=1.0.0
3535
# This should match the base package used for the mod sources.
3636
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
3737
mod_group_id=com.example.examplemod
38-
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
39-
mod_authors=YourNameHere, OtherNameHere
40-
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
41-
mod_description=Example mod description.\nNewline characters can be used and will be replaced properly.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ displayName="${mod_name}" #mandatory
3535
# A text field displayed in the mod UI
3636
#credits="" #optional
3737

38-
# A text field displayed in the mod UI
39-
authors="${mod_authors}" #optional
38+
# The authors of the mod, displayed in the mod UI (optional)
39+
#authors=""
4040

4141
# The description text for the mod (multi line!) (#mandatory)
42-
description='''${mod_description}'''
42+
description='''
43+
Example mod description.
44+
'''
4345

4446
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
4547
#[[mixins]]

0 commit comments

Comments
 (0)