Skip to content

Commit

Permalink
chore(deps): Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Dec 3, 2024
1 parent 605ad29 commit 03e84ef
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

This mod allows you to write kotlin mods/plugins without having to ship the kotlin runtime.
Thus avoiding conflicts with other mods/plugins.
It currently comes with kotlin version `2.0.20` and the following libraries :
It currently comes with kotlin version `2.1.0` and the following libraries :

- The standard library
- The reflection library
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ tasks.shadowJar {
from(rootProject.file("LICENSE.md")) { into("META-INF") }
}

tasks.dexJar {
r8Version = "8.8.20"
}

tasks.mergeJar {
archiveFileName.set("kotlin-runtime.jar")
}
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
kotlin = "2.0.20"
kotlin = "2.1.0"
kotlinx-coroutines = "1.9.0"
kotlinx-serialization = "1.7.2"
kotlinx-serialization = "1.7.3"
spotless = "6.25.0"
indra = "3.1.3"
shadow = "8.1.1"
toxopid = "4.1.0-SNAPSHOT"
shadow = "8.3.5"
toxopid = "4.1.1"

[libraries]
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
Expand All @@ -18,5 +18,5 @@ spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }
indra-common = { id = "net.kyori.indra", version.ref = "indra" }
indra-publishing = { id = "net.kyori.indra.publishing", version.ref = "indra" }
indra-git = { id = "net.kyori.indra.git", version.ref = "indra" }
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" }
shadow = { id = "com.gradleup.shadow", version.ref = "shadow" }
toxopid = { id = "com.xpdustry.toxopid", version.ref = "toxopid" }
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
16 changes: 0 additions & 16 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://maven.xpdustry.com/snapshots") {
name = "xpdustry-snapshots"
mavenContent { snapshotsOnly() }
}
mavenLocal()
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

rootProject.name = "kotlin-runtime"

0 comments on commit 03e84ef

Please sign in to comment.