1.19 incompatibility fix #9

Closed
opened 2022-06-18 04:01:11 +00:00 by kraoc · 3 comments
kraoc commented 2022-06-18 04:01:11 +00:00 (Migrated from github.com)

gradle.properties

# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

# Fabric Properties
	# check these on https://fabricmc.net/versions.html
	minecraft_version=1.19
	yarn_mappings=**1.19+build.4**
	loader_version=**0.14.8**

# Mod Properties
	mod_version = **1.4.1**
	maven_group = nl.andrewlalis
	archives_base_name = speed-carts

# Dependencies
	fabric_version=**0.56.0+1.19**

build.gradle

plugins {
	id 'fabric-loom' version '0.12-SNAPSHOT'
	id 'maven-publish'
}

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group

repositories {
	// Add repositories to retrieve artifacts from in here.
	// You should only use this when depending on other mods because
	// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
	// See https://docs.gradle.org/current/userguide/declaring_repositories.html
	// for more information about repositories.
}

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}"

	// Jackson API for config file parsing.
	implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '**2.13.3**'
	include group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '**2.13.3**'
	// Include Jackson dependencies since include directive is not transitive:
	include group: 'org.yaml', name: 'snakeyaml', version: '1.30'
	include group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '**2.13.3**'
	include group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '**2.13.3**'
	include group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '**2.13.3**'
}

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/fix-for-java-file-encoding-problems-with-gradle.html
	// If Javadoc is generated, this must be specified in that task too.
	it.options.encoding = "UTF-8"

	// Minecraft 1.18 (pre-release 2) upwards uses Java 17.
	it.options.release = 17
}

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.
	}
}
**gradle.properties** ``` # Done to increase the memory available to gradle. org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://fabricmc.net/versions.html minecraft_version=1.19 yarn_mappings=**1.19+build.4** loader_version=**0.14.8** # Mod Properties mod_version = **1.4.1** maven_group = nl.andrewlalis archives_base_name = speed-carts # Dependencies fabric_version=**0.56.0+1.19** ``` **build.gradle** ``` plugins { id 'fabric-loom' version '0.12-SNAPSHOT' id 'maven-publish' } sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 archivesBaseName = project.archives_base_name version = project.mod_version group = project.maven_group repositories { // Add repositories to retrieve artifacts from in here. // You should only use this when depending on other mods because // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. // See https://docs.gradle.org/current/userguide/declaring_repositories.html // for more information about repositories. } 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}" // Jackson API for config file parsing. implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '**2.13.3**' include group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '**2.13.3**' // Include Jackson dependencies since include directive is not transitive: include group: 'org.yaml', name: 'snakeyaml', version: '1.30' include group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '**2.13.3**' include group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '**2.13.3**' include group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '**2.13.3**' } 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/fix-for-java-file-encoding-problems-with-gradle.html // If Javadoc is generated, this must be specified in that task too. it.options.encoding = "UTF-8" // Minecraft 1.18 (pre-release 2) upwards uses Java 17. it.options.release = 17 } 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. } } ```
andrewlalis commented 2022-06-18 07:14:14 +00:00 (Migrated from github.com)

Can you provide some explanation for what it is you posted? I don't really see what you're trying to say.

Can you provide some explanation for what it is you posted? I don't really see what you're trying to say.
DCobley commented 2022-06-20 08:30:38 +00:00 (Migrated from github.com)

Not OP, but whenever trying to use the mod it crashed the server on load, I believe something to do with jacksoncore, downgrading the version as shown seems to fix it.

Not OP, but whenever trying to use the mod it crashed the server on load, I believe something to do with jacksoncore, downgrading the version as shown seems to fix it.
kraoc commented 2022-06-20 09:12:39 +00:00 (Migrated from github.com)

I used tu make some updates on dependencies (versions) and now it works.
Before I get crash.

I bumped:

yarn_mappings
loader_version
fabric_version
com.fasterxml.jackson.*

I higlighted with "** bla **" :p

I used tu make some updates on dependencies (versions) and now it works. Before I get crash. I bumped: yarn_mappings loader_version fabric_version com.fasterxml.jackson.* I higlighted with "** bla **" :p
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: andrew/SpeedCarts#9
No description provided.