ok now does it not crash
This commit is contained in:
parent
a46e6406b6
commit
a1ad4545d9
1 changed files with 10 additions and 31 deletions
41
build.gradle
41
build.gradle
|
@ -31,6 +31,16 @@ pkpcpbp {
|
||||||
mcVersion(project.minecraftVersion)
|
mcVersion(project.minecraftVersion)
|
||||||
modVersion(project.modVersion)
|
modVersion(project.modVersion)
|
||||||
}
|
}
|
||||||
|
curseforgeInfo {
|
||||||
|
id 569849
|
||||||
|
stability "beta"
|
||||||
|
token(System.getenv("CURSEFORGE_TOKEN"))
|
||||||
|
}
|
||||||
|
modrinthInfo {
|
||||||
|
id "nTW3yKrm"
|
||||||
|
stability "beta"
|
||||||
|
token(System.getenv("MODRINTH_TOKEN"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
|
@ -38,37 +48,6 @@ subprojects {
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'maven-publish'
|
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 {
|
tasks.withType(JavaCompile).configureEach {
|
||||||
it.options.encoding = 'UTF-8'
|
it.options.encoding = 'UTF-8'
|
||||||
it.options.release = 17
|
it.options.release = 17
|
||||||
|
|
Loading…
Reference in a new issue