Skip to content

Commit

Permalink
3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Cephetir committed Aug 18, 2022
1 parent f0ef43c commit 1cf9f77
Show file tree
Hide file tree
Showing 91 changed files with 2,867 additions and 3,133 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SkySkipped
[![GitHub release](https://img.shields.io/github/downloads/Cephetir/SkySkipped/latest/total)](https://github.com/Cephetir/SkySkipped/releases)
[![CodeFactor](https://www.codefactor.io/repository/github/cephetir/skyskipped/badge)](https://www.codefactor.io/repository/github/cephetir/skyskipped)\
Cephetir's cool mod for Hypixel and Skyblock

Expand Down
41 changes: 9 additions & 32 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.7.10"
kotlin("plugin.serialization") version "1.6.21"
id("com.github.johnrengelman.shadow") version "7.1.2"
id("gg.essential.loom") version "0.10.0.+"
id("dev.architectury.architectury-pack200") version "0.1.3"
id("io.github.juuxel.loom-quiltflower") version "1.7.2"
java
idea
}

version = "3.2"
version = "3.3"
group = "me.cephetir"

base {
Expand All @@ -43,23 +41,17 @@ repositories {
maven("https://jitpack.io")
}

quiltflower {
quiltflowerVersion.set("1.8.1")
}

loom {
silentMojangMappingsLicense()
launchConfigs {
getByName("client") {
property("elementa.dev", "true")
property("elementa.debug", "true")
property("elementa.invalid_usage", "warn")
property("mixin.debug.verbose", "true")
property("mixin.debug.export", "true")
property("mixin.dumpTargetOnFailure", "true")
property("legacy.debugClassLoading", "true")
property("legacy.debugClassLoadingSave", "true")
property("legacy.debugClassLoadingFiner", "true")
arg("--tweakClass", "gg.essential.loader.stage0.EssentialSetupTweaker")
arg("--mixin", "mixins.sm.json")
}
}
Expand Down Expand Up @@ -90,8 +82,7 @@ dependencies {
include("gg.essential:loader-launchwrapper:1.1.3")
implementation("gg.essential:essential-1.8.9-forge:3760")

implementation("com.kohlschutter.junixsocket:junixsocket-common:2.0.4")
include("com.kohlschutter.junixsocket:junixsocket-native-common:2.0.4") {
include("com.github.jagrosh:DiscordIPC:18b6096") {
exclude(module = "log4j")
}

Expand All @@ -112,6 +103,9 @@ sourceSets {
}

tasks {
wrapper.get().doFirst {
delete("$buildDir/libs/")
}
processResources {
inputs.property("version", project.version)
inputs.property("mcversion", "1.8.9")
Expand All @@ -138,8 +132,9 @@ tasks {
enabled = false
}
remapJar {
archiveClassifier.set("")
input.set(shadowJar.get().archiveFile)
val file = shadowJar.get().archiveFile
archiveClassifier.set(file.hashCode().toString())
input.set(file)
}
shadowJar {
archiveClassifier.set("dev")
Expand Down Expand Up @@ -171,25 +166,7 @@ tasks {
withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs =
listOf(
"-opt-in=kotlin.RequiresOptIn",
"-Xjvm-default=all",
"-Xrelease=8",
"-Xbackend-threads=0",
//"-Xuse-k2"
)
languageVersion = "1.6"
}
kotlinDaemonJvmArguments.set(
listOf(
"-Xmx2G",
"-Dkotlin.enableCacheBuilding=true",
"-Dkotlin.useParallelTasks=true",
"-Dkotlin.enableFastIncremental=true",
//"-Xbackend-threads=0"
)
)
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion h.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2
3.3
Loading

0 comments on commit 1cf9f77

Please sign in to comment.