We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bb3c3 commit c773bb7Copy full SHA for c773bb7
paper/build.gradle.kts
@@ -29,6 +29,12 @@ tasks {
29
dependsOn(applyAccessWideners)
30
}
31
32
+ processResources {
33
+ filesMatching("ignite.mod.json") {
34
+ expand("version" to project.version)
35
+ }
36
37
+
38
withType<Jar> {
39
archiveBaseName = "${rootProject.name}-${project.name}-$minecraftVersion"
40
archiveClassifier = null
paper/src/main/resources/ignite.mod.json
@@ -1,6 +1,6 @@
1
{
2
"id": "slime-worlds",
3
- "version": "1.0.0",
+ "version": "${version}",
4
"mixins": [
5
"slime-worlds.mixins.json"
6
],
0 commit comments