aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 5ef937b..e0cee69 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,9 @@ architectury {
minecraft = libs.versions.minecraft.get()
}
-val changelogText = file("changelogs/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog provided."
+version = "2.5.1+1.19.4"
+
+val changelogText = rootProject.file("changelogs/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog provided."
val snapshotVer = "${grgit.branch.current().name.replace('/', '.')}-SNAPSHOT"
allprojects {
@@ -20,7 +22,7 @@ allprojects {
apply(plugin = "maven-publish")
apply(plugin = "architectury-plugin")
- version = "2.5.0+1.19.4"
+ version = rootProject.version
group = "dev.isxander"
if (System.getenv().containsKey("GITHUB_ACTIONS")) {