本帖最后由 Xiao2 于 2021-8-24 08:22 编辑 
已经尝试使用1.16.3耗子的离线包,依然无法解决问题。
错误日志
构建版本
fabric_version=0.30.0+1.16
minecraft_version=1.16.5
yarn_mappings=1.16.5+build.1
oader_version=0.11.0
fabric-loom' version '0.5-SNAPSHOT'
改为0.6-SNAPSHOT后
如果有什么办法的话,万分感谢!
build.gradle
setting.gradle
gradle.properties
解决方法:我换了系统,macOSyyds。确信是设备问题!!!
edit:不是设备问题,是Fabric 0.69 Loom的问题。请更换为0.7 。
错误日志链:https://www.mcbbs.net/thread-1182832-1-1.html
错误日志
构建版本
fabric_version=0.30.0+1.16
minecraft_version=1.16.5
yarn_mappings=1.16.5+build.1
oader_version=0.11.0
fabric-loom' version '0.5-SNAPSHOT'
改为0.6-SNAPSHOT后
如果有什么办法的话,万分感谢!
build.gradle
setting.gradle
gradle.properties
解决方法:我换了系统,macOSyyds。确信是设备问题!!!
edit:不是设备问题,是Fabric 0.69 Loom的问题。请更换为0.7 。
错误日志链:https://www.mcbbs.net/thread-1182832-1-1.html
已经尝试使用1.16.3耗子的离线包,依然无法解决问题。
错误日志
构建版本
fabric_version=0.30.0+1.16
minecraft_version=1.16.5
yarn_mappings=1.16.5+build.1
oader_version=0.11.0
fabric-loom' version '0.5-SNAPSHOT'
改为0.6-SNAPSHOT后
如果有什么办法的话,万分感谢!
build.gradle
setting.gradle
gradle.properties
解决方法:我换了系统,macOSyyds。确信是设备问题!!!
edit:不是设备问题,是Fabric 0.69 Loom的问题。请更换为0.7 。
错误日志链:https://www.mcbbs.net/thread-1182832-1-1.html
2021.12 数据,可能有更多内容
已经尝试使用1.16.3耗子的离线包,依然无法解决问题。错误日志
构建版本
fabric_version=0.30.0+1.16
minecraft_version=1.16.5
yarn_mappings=1.16.5+build.1
oader_version=0.11.0
fabric-loom' version '0.5-SNAPSHOT'
改为0.6-SNAPSHOT后
如果有什么办法的话,万分感谢!
build.gradle
plugins {
id 'fabric-loom' version '0.5-SNAPSHOT'
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
archivesBaseName = project.archives_base_name
version = project.mod_version as Object
group = project.maven_group as Object
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
// modImplementation "me.shedaniel:RoughlyEnoughItems:5.10.184"
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/f ... ms-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
// The Minecraft launcher currently installs Java 8 for users, so your mod probably wants to target Java 8 too
// JDK 9 introduced a new way of specifying this that will make sure no newer classes or methods are used.
// We'll use that if it's available, but otherwise we'll use the older option.
def targetVersion = 8
if (JavaVersion.current().isJava9Compatible()) {
it.options.release = targetVersion
}
}
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
   
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
id 'fabric-loom' version '0.5-SNAPSHOT'
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
archivesBaseName = project.archives_base_name
version = project.mod_version as Object
group = project.maven_group as Object
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
// modImplementation "me.shedaniel:RoughlyEnoughItems:5.10.184"
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/f ... ms-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
// The Minecraft launcher currently installs Java 8 for users, so your mod probably wants to target Java 8 too
// JDK 9 introduced a new way of specifying this that will make sure no newer classes or methods are used.
// We'll use that if it's available, but otherwise we'll use the older option.
def targetVersion = 8
if (JavaVersion.current().isJava9Compatible()) {
it.options.release = targetVersion
}
}
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
setting.gradle
代码:
- pluginManagement {
 
-     repositories {
 
-    maven {
 
-       name = 'Fabric'
 
-       url = 'https://maven.fabricmc.net/'
 
-    }
 
-    gradlePluginPortal()
 
-     }
 
- }
 
gradle.properties
代码:
- # Done to increase the memory available to gradle.
 
- org.gradle.jvmargs=-Xmx1G
 
 
- # Fabric Properties
 
-    # check these on https://fabricmc.net/use
 
-    minecraft_version=1.16.5
 
-    yarn_mappings=1.16.5+build.1
 
-    loader_version=0.11.0
 
 
- # Mod Properties
 
-    mod_version = 0.6.2
 
-    maven_group = net.cocofish
 
-    archives_base_name = Yuushya
 
 
- # Dependencies
 
-    # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
 
-    fabric_version=0.30.0+1.16
 
解决方法:我换了系统,macOSyyds。确信是设备问题!!!
edit:不是设备问题,是Fabric 0.69 Loom的问题。请更换为0.7 。
错误日志链:https://www.mcbbs.net/thread-1182832-1-1.html