Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'com.lfaoanl'
version = '1.3'
version = '1.4'

subprojects {
apply plugin: 'java-library'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
javaVersion=16
javaVersion=17
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
39 changes: 9 additions & 30 deletions marketcrates-common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,35 +1,14 @@
//plugins {
// id 'fabric-loom' version '0.10-SNAPSHOT'
// id 'maven-publish'
//}
//dependencies {
// // To change the versions see the gradle.properties file
// minecraft "com.mojang:minecraft:${project.minecraft_version}"
// mappings loom.officialMojangMappings()
//
//}
buildscript {
repositories {
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven { url = 'https://maven.minecraftforge.net' }
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
}
plugins {
id 'fabric-loom' version '1.5-SNAPSHOT'
id 'maven-publish'
}
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"
}

apply plugin: 'net.minecraftforge.gradle'

java {
archivesBaseName = 'marketcrates-common'
toolchain.languageVersion = JavaLanguageVersion.of(16)
toolchain.languageVersion = JavaLanguageVersion.of(17)
}

minecraft {
mappings channel: 'official', version: '1.17.1'
}

dependencies {
minecraft 'net.minecraftforge:forge:1.17.1-37.0.109'
}
8 changes: 4 additions & 4 deletions marketcrates-common/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.17.1
yarn_mappings=1.17.1+build.63
loader_version=0.12.5
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3
loader_version=0.15.6

# Mod Properties
archives_base_name = marketcrates-common

# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.42.1+1.17
fabric_version=0.94.1+1.20.4
Loading