Skip to content
Merged
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
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
plugins {
id 'fabric-loom' version '1.11-SNAPSHOT'
id 'net.fabricmc.fabric-loom' version '1.15-SNAPSHOT'
id 'maven-publish'
}

version = project.mod_version
group = project.maven_group

loom {
accessWidenerPath = file("src/main/resources/starry_skies.accesswidener")
accessWidenerPath = file("src/main/resources/starry_skies.classtweaker")
}

repositories {
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/" }
maven { url = "https://maven.is-immensely.gay/releases" }
maven { url = "https://maven.kyrptonaught.dev" }
}

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}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"
implementation "net.fabricmc:fabric-loader:${project.loader_version}"
implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"

modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") { exclude(group: "net.fabricmc.fabric-api") }
modApi("com.terraformersmc:modmenu:${project.modmenu_version}")
modImplementation include ("net.kyrptonaught:customportalapi:$project.custom_portal_api_version")
api("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") { exclude(group: "net.fabricmc.fabric-api") }
api("com.terraformersmc:modmenu:${project.modmenu_version}")
implementation include ("net.kyrptonaught:customportalapi:$project.custom_portal_api_version")
}

processResources {
Expand All @@ -44,8 +44,8 @@ processResources {
java {
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_25
targetCompatibility = JavaVersion.VERSION_25
}

jar {
Expand Down
15 changes: 7 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
org.gradle.jvmargs = -Xmx2G

# Fabric Properties
minecraft_version=1.21.8
yarn_mappings=1.21.8+build.1
loader_version=0.17.2
minecraft_version=26.1
loader_version=0.18.6

# Mod Properties
mod_version=4.1.0+1.21.8
mod_version=4.1.0+26.1
maven_group=de.dafuqs
archives_base_name = StarrySkies

# Dependencies
fabric_api_version=0.131.0+1.21.8
cloth_config_version=19.0.147
modmenu_version=15.0.0-beta.3
fabric_api_version=0.145.1+26.1
cloth_config_version=26.1.154
modmenu_version=18.0.0-alpha.8

# https://github.com/kyrptonaught/customportalapi
custom_portal_api_version=0.0.1-beta68-1.21.8
custom_portal_api_version=0.0.1-beta69-26.1
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 4 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStorePath=wrapper/dists
Loading