Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#114)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 14, 2024
1 parent 71f4c28 commit c20238e
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
dependencies {
api(platform(kotlin("bom")))
api(kotlin("stdlib"))
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.7.3")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.6.2")
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.8.1")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.7.0")
}

java {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.9.22" apply false
kotlin("kapt") version "1.9.22" apply false
kotlin("plugin.serialization") version "1.9.22" apply false
kotlin("jvm") version "1.9.24" apply false
kotlin("kapt") version "1.9.24" apply false
kotlin("plugin.serialization") version "1.9.24" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
}

Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
api(project(":unifiedmetrics-api"))
implementation("com.charleskorn.kaml:kaml:0.56.0")
implementation("com.charleskorn.kaml:kaml:0.60.0")
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down
20 changes: 10 additions & 10 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand All @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand Down
2 changes: 1 addition & 1 deletion platforms/bungee/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {
dependencies {
api(project(":unifiedmetrics-core"))

compileOnly("net.md-5", "bungeecord-api", "1.20-R0.1")
compileOnly("net.md-5", "bungeecord-api", "1.20-R0.2")
}

tasks {
Expand Down
6 changes: 3 additions & 3 deletions platforms/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

plugins {
id("fabric-loom") version "1.4.5"
id("fabric-loom") version "1.7.1"
}

val transitiveInclude: Configuration by configurations.creating {
Expand All @@ -29,10 +29,10 @@ dependencies {
// https://fabricmc.net/versions.html
minecraft("com.mojang:minecraft:1.17.1")
mappings("net.fabricmc:yarn:1.17.1+build.65:v2")
modImplementation("net.fabricmc:fabric-loader:0.15.3")
modImplementation("net.fabricmc:fabric-loader:0.15.11")

modImplementation("net.fabricmc.fabric-api:fabric-api:0.46.1+1.17")
modImplementation("net.fabricmc:fabric-language-kotlin:1.10.17+kotlin.1.9.22")
modImplementation("net.fabricmc:fabric-language-kotlin:1.11.0+kotlin.2.0.0")

api(project(":unifiedmetrics-core"))

Expand Down

0 comments on commit c20238e

Please sign in to comment.