ok now does it not crash

This commit is contained in:
petrak@ 2023-04-24 11:30:52 -05:00
parent a46e6406b6
commit a1ad4545d9

View file

@ -31,6 +31,16 @@ pkpcpbp {
mcVersion(project.minecraftVersion)
modVersion(project.modVersion)
}
curseforgeInfo {
id 569849
stability "beta"
token(System.getenv("CURSEFORGE_TOKEN"))
}
modrinthInfo {
id "nTW3yKrm"
stability "beta"
token(System.getenv("MODRINTH_TOKEN"))
}
}
subprojects {
@ -38,37 +48,6 @@ subprojects {
apply plugin: 'kotlin'
apply plugin: 'maven-publish'
/*
repositories {
maven { url "https://libraries.minecraft.net/" }
mavenCentral()
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = 'BlameJared Maven'
url = 'https://maven.blamejared.com'
}
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
maven {
url = "https://jitpack.io"
}
}
*/
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = 17