1
0
forked from Clones/Controlify

fix many crashes

This commit is contained in:
isXander
2023-04-21 16:43:34 +01:00
parent 996dd47cf4
commit 3c24bd4bb7
5 changed files with 24 additions and 12 deletions

View File

@ -17,7 +17,7 @@ plugins {
}
group = "dev.isxander"
version = "1.1.0-beta.3+1.19.4"
version = "1.1.0-beta.4+1.19.4"
repositories {
mavenLocal()
@ -176,6 +176,10 @@ tasks {
dependsOn("publish")
dependsOn("githubRelease")
}
named("modrinth") {
dependsOn("optimizeOutputsOfRemapJar")
}
}
val changelogText = file("changelogs/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog provided."
@ -241,11 +245,10 @@ publishing {
publications {
create<MavenPublication>("mod") {
groupId = "dev.isxander"
artifactId = base.archivesName.get()
artifactId = "controlify"
from(components["java"])
artifact(tasks["remapJar"])
artifact(tasks["remapSourcesJar"])
artifact(tasks["javadocJar"])
}
}